class documentation

class SecurityOptions: (source)

View In Hierarchy

This will by default disallow everything, except for 'none'.
Method __init__ SecurityOptions() initialize.
Method allow​Basic​Types Allow all `basic' types. (Dictionary and list. Int, string, and float are implicitly allowed.)
Method allow​Instances​Of SecurityOptions.allowInstances(klass, klass, ...): allow instances of the specified classes
Method allow​Modules SecurityOptions.allowModules(module, module, ...): allow modules by name. This will also allow the 'module' type.
Method allow​Types SecurityOptions.allowTypes(typeString): Allow a particular type, by its name.
Method is​Class​Allowed SecurityOptions.isClassAllowed(class) -> boolean Assumes the module has already been allowed. Returns 1 if the given class is allowed, 0 otherwise.
Method is​Module​Allowed SecurityOptions.isModuleAllowed(moduleName) -> boolean returns 1 if a module by that name is allowed, 0 otherwise
Method is​Type​Allowed SecurityOptions.isTypeAllowed(typeName) -> boolean Returns 1 if the given type is allowed, 0 otherwise.
Class Variable basic​Types Undocumented
Instance Variable allowed​Classes Undocumented
Instance Variable allowed​Modules Undocumented
Instance Variable allowed​Types Undocumented
def __init__(self): (source)
SecurityOptions() initialize.
def allowBasicTypes(self): (source)
Allow all `basic' types. (Dictionary and list. Int, string, and float are implicitly allowed.)
def allowInstancesOf(self, *classes): (source)

SecurityOptions.allowInstances(klass, klass, ...): allow instances of the specified classes

This will also allow the 'instance', 'class' (renamed 'classobj' in Python 2.3), and 'module' types, as well as basic types.

def allowModules(self, *modules): (source)
SecurityOptions.allowModules(module, module, ...): allow modules by name. This will also allow the 'module' type.
def allowTypes(self, *types): (source)
SecurityOptions.allowTypes(typeString): Allow a particular type, by its name.
def isClassAllowed(self, klass): (source)
SecurityOptions.isClassAllowed(class) -> boolean Assumes the module has already been allowed. Returns 1 if the given class is allowed, 0 otherwise.
def isModuleAllowed(self, moduleName): (source)
SecurityOptions.isModuleAllowed(moduleName) -> boolean returns 1 if a module by that name is allowed, 0 otherwise
def isTypeAllowed(self, typeName): (source)
SecurityOptions.isTypeAllowed(typeName) -> boolean Returns 1 if the given type is allowed, 0 otherwise.
basicTypes: list[str] = (source)

Undocumented

allowedClasses: dict = (source)

Undocumented

allowedModules: dict = (source)

Undocumented

allowedTypes: dict[bytes, int] = (source)

Undocumented