summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* Fixes an issue serving binary fileswillmcgugan@gmail.com2013-08-101-26/+26
* Don't store methods as attributes.btimby2013-07-191-1/+4
* Fixed issue in memoryfs.makedir where a path containing a forward slash at th...willmcgugan@gmail.com2013-07-061-1/+1
* doctest correctionwillmcgugan@gmail.com2013-06-281-1/+1
* simpler version of relativefromwillmcgugan@gmail.com2013-06-281-5/+6
* Added 'relativefrom' method to path.pywillmcgugan@gmail.com2013-06-283-2/+45
* After testing, there is no unicode in six module. six.text_type represents un...btimby2013-04-241-1/+2
* Pyftpdlib 1.x uses unicode, the provided path will already be unicode and thu...btimby2013-04-241-1/+7
* Change of api (fs.open, fs.setcontent, fs.getcontents) to support io module i...willmcgugan@gmail.com2013-03-3145-1333/+1705
* unicode test filewillmcgugan@gmail.com2013-03-251-0/+212
* Data for Python 2 testswillmcgugan@gmail.com2013-03-250-0/+0
* Experimental Python3 supportwillmcgugan@gmail.com2013-03-251-0/+142
* r844 modified test_archivefs.py to not run the TestReadArchiveFS tests if lib...gcode@loowis.durge.org2013-03-181-0/+6
* Tests for mountfilewillmcgugan@gmail.com2013-03-171-4/+46
* Some minor fixes and doc changeswillmcgugan@gmail.com2013-03-171-16/+32
* Partially fixes Issue 148gcode@loowis.durge.org2013-03-171-1/+1
* *sigh* typo, caught during testing.btimby2013-03-041-1/+1
* Don\'t double-close.btimby2013-03-041-2/+3
* Fix for xmlrpcwillmcgugan@gmail.com2013-02-106-168/+184
* Change the way TempFS's _meta dict gets built so that it 'inherits' default v...gcode@loowis.durge.org2012-12-232-18/+12
* More accurate (and possibly more efficient) version of the _requires_normaliz...gcode@loowis.durge.org2012-12-221-3/+1
* Made normpath('/.') and normpath('/..') behave more consistentlygcode@loowis.durge.org2012-12-222-2/+6
* Change test_invalid_chars to call the base version first (eliminates duplicat...gcode@loowis.durge.org2012-12-211-5/+1
* Whitespace fix.btimby2012-12-041-1/+39
* Micro-optimization for normpath. I should probably leave that function alone ...willmcgugan@gmail.com2012-12-031-7/+4
* Implemented generic validatepath method and optimized normpathwillmcgugan@gmail.com2012-12-019-104/+173
* Changed detection of Windows for invalid_path_chars stringwillmcgugan@gmail.com2012-11-291-1/+1
* Fixed some encoding mismatch between pyftpdlib (uses str internally) and pyfs...btimby2012-11-281-2/+11
* Fix for mountfs testswillmcgugan2012-11-281-2/+2
* fixwillmcgugan@gmail.com2012-11-281-1/+1
* Fix for invalid chars in path on win32willmcgugan@gmail.com2012-11-281-3/+3
* fixwillmcgugan@gmail.com2012-11-261-1/+1
* InvalidCharsInPathErrorwillmcgugan@gmail.com2012-11-244-14/+27
* Fixes for backslashes on Linux issue, see Issue #139willmcgugan@gmail.com2012-11-245-211/+234
* Allow wrapped_fs to be set to None when closed by superclass.btimby2012-11-201-0/+2
* If the wrapped_fs reference is not removed, the SubFS will create a cycle wit...btimby2012-11-151-0/+1
* Whitespace cleanup.btimby2012-11-151-1/+1
* Prevent MemoryFS.removedir(..., recursive=True) removing non-empty parent dir...gcode@loowis.durge.org2012-10-262-0/+4
* Be less heavy-handed, setting the reference to None will do.btimby2012-10-183-3/+54
* __del__() is inherited from FS and redundant.btimby2012-10-181-7/+7
* Fix for missing ResourceNotFound error in fs.walkwillmcgugan@gmail.com2012-10-091-76/+80
* Implemented walk() which allows caller to decide how to treat archives.btimby2012-09-211-0/+106
* Had replaced **kwargs with named arguments. Needed to update this call accord...btimby2012-09-171-1/+1
* Under some conditions, these methods are required. However, there was a bug inbtimby2012-09-171-0/+22
* No need to override isfile() and isdir() anymore, getinfo() is correct.btimby2012-09-171-22/+0
* Overhauled most of the ArchiveMountFS file system method implementations so thatbtimby2012-09-171-64/+104
* Oops, forgot the auto_mount parameter.btimby2012-09-131-1/+1
* Not yet fully-tested, but move(), copy(), remove() work properly. These chan...btimby2012-09-131-50/+106
* Prevent files being opened with '+' in the mode string. Fixes Issue 129gcode@loowis.durge.org2012-09-011-1/+1
* Use stat() to determine mtime instead of relying on fs directly.btimby2012-08-291-2/+2