|
__init__(self,
xyz)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
|
|
dispatch(self,
path,
enc=None,
**kwargs)
Dispatch provided path to corresponding VFS object handler |
source code
|
|
|
set_cache(self,
path,
data)
Save some data for VFS object This data dict is appended to
VFSObject's kwargs dict every time dispatch() is called |
source code
|
|
|
get_cache(self,
path)
Return saved cache for the object or {} if none was saved |
source code
|
|
|
clear_cache(self,
path)
Clear cache for given path |
source code
|
|
|
|
|
|
|
get_full_path(self,
path,
vfs,
parent)
Return full path |
source code
|
|
|
get_ext_path(self,
parent,
vfs)
Return external path |
source code
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|