summaryrefslogtreecommitdiff
path: root/fs/errors.py
Commit message (Collapse)AuthorAgeFilesLines
* py2.6 fixeswillmcgugan@gmail.com2014-02-261-1/+1
|
* Test fixeswillmcgugan@gmail.com2014-02-261-0/+4
|
* Allow unicode conversion for errors containing non-ascii strings. willmcgugan@gmail.com2013-09-101-1/+7
|
* Implemented generic validatepath method and optimized normpathwillmcgugan@gmail.com2012-12-011-1/+8
|
* InvalidCharsInPathErrorwillmcgugan@gmail.com2012-11-241-6/+6
|
* Fixes for backslashes on Linux issue, see Issue #139willmcgugan@gmail.com2012-11-241-2/+7
|
* Forgot to add BackReferenceError to __all__ list. This caused problems in ↵btimby2012-08-231-0/+1
| | | | expose/sftp.py (BackReferenceError not defined).
* Don't derive BackReferenceError from FSError. See comments on r773.btimby2012-04-201-2/+1
|
* Use explicit exception to detect invalid path (BackReferenceError), see ↵btimby2012-04-201-0/+5
| | | | comments on r773
* Changed DeleteRootError to RemoveRootError for consistencywillmcgugan2012-01-111-3/+3
|
* Fixed copydir/movedir, added DeleteRootErrorwillmcgugan2012-01-111-0/+5
|
* spelling fixesrfkelly02011-03-081-2/+2
|
* convert_os_errors: handle ECONNRESET => RemoteConnectionErrorrfkelly02011-01-281-0/+2
|
* fix pickability of NoMetaErrorrfkelly02010-12-281-2/+5
|
* some doc additions and cleanupsrfkelly02010-12-271-1/+1
|
* Added FS command line scriptswillmcgugan2010-12-051-0/+4
|
* Added getmeta and hasmeta methodswillmcgugan2010-11-071-0/+9
|
* fs.error: actually fix bug with missing ENONETrfkelly02010-10-171-1/+1
|
* ENONET missing on win32; use ENETDOWN instead (closed issue #38)rfkelly02010-10-151-1/+3
|
* Fix various DAVFS issues from issue #40rfkelly02010-10-121-0/+2
| | | | | | | | * don't close the socket when handing off to RemoteFileBuffer * remove redundant check for "w" mode in the 404 case * properly close the socket in the isdir() case * add readline() method to RemoteFileBuffer
* Added getpathurl methodwillmcgugan2010-10-121-2/+11
|
* convert_os_errors: report path in StorageSpaceError and PermissionDeniedErrorrfkelly02010-09-261-6/+6
|
* convert ENAMETOOLONG into a PathErrorrfkelly02010-09-221-0/+2
|
* rename "functools" to "local_functools".rfkelly02010-09-071-1/+1
| | | | | | It can't have the same name as the module it's trying to emulate. Python's local-imports-first rule means it would shadow the stdlib functools module and we would always get the fallback version.
* fix some corner cases in osfs/watch_win32.pyrfkelly02010-09-061-0/+2
|
* added conversion logic for ParentDirectoryMissing => ESRCH on win32rfkelly02010-08-041-0/+5
|
* Added better zip exceptions, and added __all__ to core classeswillmcgugan2010-07-101-5/+28
|
* Fixed a few issues that had accumulated in Google Code, bumped the version ↵willmcgugan2010-06-201-6/+1
| | | | up to 0.3.0
* convert EPERM => PermissionDeniedErrorrfkelly02010-06-181-0/+2
|
* Documentation, fixes, A ReadOnlyFS wrapper and a plain old FTP FS classwillmcgugan2010-01-011-6/+6
|
* convert_os_erorrs: ESRCH --> ResourceNotFoundErrorrfkelly02009-12-301-0/+2
|
* added OperationTimeoutErrorrfkelly02009-12-021-0/+4
|
* add FSClosedErrorrfkelly02009-12-021-0/+4
|
* support for ResourceLockedError on Windowsrfkelly02009-11-231-0/+8
|
* better handling of unicode paths in errorsrfkelly02009-11-211-1/+6
|
* better error printing if they contain unicode pathsrfkelly02009-11-211-3/+3
|
* correclty spell EACCESrfkelly02009-11-161-2/+2
|
* make convert_os_errors handle EACCESS -> PermissionDeniedErrorrfkelly02009-10-271-0/+2
|
* make error classes pickleable, and add appropriate testsrfkelly02009-09-181-3/+6
|
* report correct line numbers in various error decoratorsrfkelly02009-09-031-12/+13
|
* catch and report ENOSPC errors in convert_os_errorsrfkelly02009-08-051-0/+2
|
* more robustness (particularly cross-thread) for SimulateXAttr wrapperrfkelly02009-07-171-0/+2
|
* got latest unittests passing on Windowsrfkelly02009-07-131-0/+4
|
* make convert_os_errors() decorate rewrite the resource path if self as an ↵rfkelly02009-06-171-9/+16
| | | | attribute "root_path"
* merge branch "rfk-ideas" into trunkrfkelly02009-06-151-0/+179