diff options
author | rfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f> | 2010-01-15 09:20:06 +0000 |
---|---|---|
committer | rfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f> | 2010-01-15 09:20:06 +0000 |
commit | 751c0d74a34bf67f9fed56b25ca5c566bdac7059 (patch) | |
tree | a47f459afb0f9ebb796cba8363e8b2274de4045a /fs/remote.py | |
parent | 637d37077d2c14fcb8cf7a251b71511fc8760756 (diff) | |
download | pyfilesystem-751c0d74a34bf67f9fed56b25ca5c566bdac7059.tar.gz |
cross-directory rename() support for MemoryFS
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@319 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/remote.py')
-rw-r--r-- | fs/remote.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/remote.py b/fs/remote.py index 08a0683..ca435e9 100644 --- a/fs/remote.py +++ b/fs/remote.py @@ -9,15 +9,15 @@ Utilities for interfacing with remote filesystems This module provides reusable utility functions that can be used to construct FS subclasses interfacing with a remote filesystem. These include: - * RemoteFileBuffer: a file-like object that locally buffers the contents - of a remote file, writing them back on flush() or close(). + * RemoteFileBuffer: a file-like object that locally buffers the contents of + a remote file, writing them back on flush() or close(). * ConnectionManagerFS: a WrapFS subclass that tracks the connection state - of a remote FS, and allows client code to wait for - a connection to be re-established. + of a remote FS, and allows client code to wait for + a connection to be re-established. * CacheFS: a WrapFS subclass that caces file and directory meta-data in - memory, to speed access to a remote FS. + memory, to speed access to a remote FS. """ |