2013-07-19 22:42:32 +00:00
|
|
|
# Copyright 2013 Hardcoded Software (http://www.hardcoded.net)
|
2010-04-07 06:52:24 +00:00
|
|
|
|
|
|
|
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
|
|
|
# which should be included with this package. The terms are also available at
|
|
|
|
# http://www.hardcoded.net/licenses/bsd_license
|
|
|
|
|
2010-04-06 16:04:32 +00:00
|
|
|
import sys
|
|
|
|
|
|
|
|
if sys.platform == 'darwin':
|
2010-07-07 14:12:13 +00:00
|
|
|
from .plat_osx import send2trash
|
2010-04-06 16:04:32 +00:00
|
|
|
elif sys.platform == 'win32':
|
2010-07-07 14:12:13 +00:00
|
|
|
from .plat_win import send2trash
|
2010-04-06 16:04:32 +00:00
|
|
|
else:
|
2013-07-19 23:16:11 +00:00
|
|
|
try:
|
|
|
|
# If we can use gio, let's use it
|
|
|
|
from .plat_gio import send2trash
|
|
|
|
except ImportError:
|
|
|
|
# Oh well, let's fallback to our own Freedesktop trash implementation
|
|
|
|
from .plat_other import send2trash
|