summaryrefslogtreecommitdiff
path: root/fs/base.py
diff options
context:
space:
mode:
authorwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2011-03-08 12:50:23 +0000
committerwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2011-03-08 12:50:23 +0000
commitc8941475a94c1f6ef67b44aeeb6f2f97359898d4 (patch)
tree25895f825f86b36be4747e107daf85abb9a936da /fs/base.py
parent4506b3a8c72ed98b4cd7df78cd8dee21c766b803 (diff)
downloadpyfilesystem-c8941475a94c1f6ef67b44aeeb6f2f97359898d4.tar.gz
Doc fixes
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@651 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/base.py')
-rw-r--r--fs/base.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/base.py b/fs/base.py
index d7b75d4..fef2906 100644
--- a/fs/base.py
+++ b/fs/base.py
@@ -235,9 +235,10 @@ class FS(object):
* *atomic.rename* True if rename is an atomic operation, (and not implemented as a copy followed by a delete)
* *atomic.setcontents* True if the implementation supports setting the contents of a file as an atomic operation (without opening a file)
* *free_space* The free space (in bytes) available on the file system
- * *total_space* The total space (in bytes) available on the file system
+ * *total_space* The total space (in bytes) available on the file system
+ * *virtual* True if the filesystem defers to other filesystems
- FS implementations may expose non-generic meta data through a self-named namespace. e.g. ``somefs.some_meta``
+ FS implementations may expose non-generic meta data through a self-named namespace. e.g. ``"somefs.some_meta"``
Since no meta value is guaranteed to exist, it is advisable to always supply a
default value to ``getmeta``.