diff options
Diffstat (limited to 'source4/scripting/python/misc.py')
-rw-r--r-- | source4/scripting/python/misc.py | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/source4/scripting/python/misc.py b/source4/scripting/python/misc.py index 94625be2c9..afe7b723e0 100644 --- a/source4/scripting/python/misc.py +++ b/source4/scripting/python/misc.py @@ -2,7 +2,6 @@ # Version 1.3.33 # # Don't modify this file, modify the SWIG interface instead. -# This file is compatible with both classic and new-style classes. import _misc import new @@ -48,6 +47,16 @@ except AttributeError: del types +def _swig_setattr_nondynamic_method(set): + def set_attr(self,name,value): + if (name == "thisown"): return self.this.own(value) + if hasattr(self,name) or (name == "this"): + set(self,name,value) + else: + raise AttributeError("You cannot add attributes to %s" % self) + return set_attr + + random_password = _misc.random_password |