summaryrefslogtreecommitdiff
path: root/fs/zipfs.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
commit69ab86f7ed7578547195224a6c584c2163bc2f62 (patch)
treeebe34b915f034407e8c56de7ff9f7ec6f8eb3ad8 /fs/zipfs.py
parentca009f8310d33d99c9a6d0b1bd154ce75ff5efaa (diff)
downloadpyfilesystem-git-69ab86f7ed7578547195224a6c584c2163bc2f62.tar.gz
Added "thread_safe" meta value
Diffstat (limited to 'fs/zipfs.py')
-rw-r--r--fs/zipfs.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/zipfs.py b/fs/zipfs.py
index ee2cd02..af143d0 100644
--- a/fs/zipfs.py
+++ b/fs/zipfs.py
@@ -72,7 +72,8 @@ class ZipFS(FS):
"""A FileSystem that represents a zip file."""
- _meta = { 'virtual' : False,
+ _meta = { 'thread_safe' : True,
+ 'virtual' : False,
'read_only' : False,
'unicode_paths' : True,
'case_insensitive_paths' : False,