summaryrefslogtreecommitdiff
path: root/fs/osfs/__init__.py
diff options
context:
space:
mode:
authorwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2011-03-07 14:51:26 +0000
committerwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2011-03-07 14:51:26 +0000
commit9da556e72ef2fe21d1a8891c8fb275e6c69e96d9 (patch)
treeebe34b915f034407e8c56de7ff9f7ec6f8eb3ad8 /fs/osfs/__init__.py
parent49bd11eef10959269e872183337f9494bb81931c (diff)
downloadpyfilesystem-9da556e72ef2fe21d1a8891c8fb275e6c69e96d9.tar.gz
Added "thread_safe" meta value
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@643 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/osfs/__init__.py')
-rw-r--r--fs/osfs/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/osfs/__init__.py b/fs/osfs/__init__.py
index 68b41c4..e84b4b4 100644
--- a/fs/osfs/__init__.py
+++ b/fs/osfs/__init__.py
@@ -74,7 +74,8 @@ class OSFS(OSFSXAttrMixin, OSFSWatchMixin, FS):
methods in the os and os.path modules.
"""
- _meta = { 'network' : False,
+ _meta = { 'thread_safe' : True,
+ 'network' : False,
'virtual' : False,
'read_only' : False,
'unicode_paths' : os.path.supports_unicode_filenames,