def osx_recycle(path):
     if isbytestring(path):
         path = path.decode(filesystem_encoding)
     send2trash(path)
 def fdo_recycle(path):
     if isbytestring(path):
         path = path.decode(filesystem_encoding)
     path = os.path.abspath(path)
     send2trash(path)