diff options
author | Robey Pointer <robey@lag.net> | 2006-02-19 20:03:43 -0800 |
---|---|---|
committer | Robey Pointer <robey@lag.net> | 2006-02-19 20:03:43 -0800 |
commit | 6459365f50e83b680abc7ee72d6c2d5017964b6b (patch) | |
tree | 431876683fd551153c62cce078675b636dd9e87f | |
parent | 4be91d1c4d3d4a2257cec37250822f4a2b8e8530 (diff) |
[project @ robey@lag.net-20060220040343-f13904d9c97035e3]
explain why paths aren't, and can't be, unicode strings when passed to SFTPServerInterface
-rw-r--r-- | paramiko/sftp_si.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/paramiko/sftp_si.py b/paramiko/sftp_si.py index 8095d23a..bcda61cf 100644 --- a/paramiko/sftp_si.py +++ b/paramiko/sftp_si.py @@ -36,6 +36,9 @@ class SFTPServerInterface (object): SFTP sessions). However, raising an exception will usually cause the SFTP session to abruptly end, so you will usually want to catch exceptions and return an appropriate error code. + + All paths are in string form instead of unicode because not all SFTP + clients & servers obey the requirement that paths be encoded in UTF-8. """ def __init__ (self, server, *largs, **kwargs): |