mirror of
https://github.com/arsenetar/send2trash.git
synced 2024-12-08 21:49:03 +00:00
8a1dff2947
--HG-- rename : modules/trash_osx.c => modules/send2trash_osx.c rename : modules/trash_win.c => modules/send2trash_win.c
7 lines
153 B
Python
7 lines
153 B
Python
import _send2trash_osx
|
|
|
|
def send2trash(path):
|
|
if not isinstance(path, unicode):
|
|
path = unicode(path, 'utf-8')
|
|
_send2trash_osx.send(path)
|