Changeset 656
- Timestamp:
- 2006-11-23 18:34:10 (2 years ago)
- Files:
-
- trunk/README.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/README.txt
r636 r656 18 18 From version 2.1 to 2.2, the following has changed: 19 19 20 - Results of stat calls (also indirect calls in the submodule `path`,21 i . e. isdir/isfile/islink, exists, getmtime etc.) are now cached22 andreused. This results in remarkable speedups for many use cases.20 - Results of stat calls (also indirect calls, i. e. listdir, 21 isdir/isfile/islink, exists, getmtime etc.) are now cached and 22 reused. This results in remarkable speedups for many use cases. 23 23 24 24 - The current directory is also locally cached, resulting in further 25 but usually lesserspeedups.25 speedups. 26 26 27 27 - File-like objects generated via ``FTPHost.file`` now support the 28 28 iterator protocol (for line in some_file: ...). 29 30 - It's now possible to write and plug in custom parsers for directory 31 formats which ftputil doesn't support natively. 29 32 30 33 - The documentation has been updated accordingly. … … 35 38 worked with Python versions from 2.1 up.) 36 39 37 - The method ``FTPHost.set_directory_format`` has been removed, 38 since the directory format is set automatically. 40 - The "old" method ``FTPHost.set_directory_format`` has been removed, 41 since the directory format (Unix or MS) is set automatically. (The 42 new method ``set_parser`` is a different animal since it takes 43 a parser object to parse "foreign" formats, not a string.) 39 44 40 45 Documentation … … 89 94 http://www.opensource.org/licenses/bsd-license.html ). 90 95 91 Author 92 ------ 96 Authors 97 ------- 93 98 94 99 Stefan Schwarzer <sschwarzer@sschwarzer.net> 100 Evan Prodromou <evan@bad.dynu.ca> (contributed lrucache module) 95 101 96 102 Please provide feedback! It's surely appreciated. :-)
