我们从Python开源项目中,提取了以下50个代码示例,用于说明如何使用UserDict.UserDict.__init__()。
def __init__(self, obj): # wrap the object UserDict.__init__(self) self.data = obj
def __init__(self, *args, **kw): super(Config, self).__init__(*args, **kw) self.implicit_save = True self._prev_dict = None self.path = os.path.join(charm_dir(), Config.CONFIG_FILE_NAME) if os.path.exists(self.path): self.load_previous() atexit(self._implicit_save)
def __init__(self, config_save=None): super(Hooks, self).__init__() self._hooks = {} # For unknown reasons, we allow the Hooks constructor to override # config().implicit_save. if config_save is not None: config().implicit_save = config_save
def __init__(self, **kwargs): "initialize board" d = {"ROWS":8,"COLS":8,"BOMBS":10} d.update(kwargs) UserDict.__init__(self,d) self.reset()
def __init__(self, *maps): '''Initialize a ChainMap by setting *maps* to the given mappings. If no mappings are provided, a single empty dictionary is used. ''' self.maps = list(maps) or [{}] # always at least one map
def __init__(self, data): UserDict.__init__(self) self.data = data
def __init__(self, module=__name__): self.logger = logging.getLogger('%s-%s(%s)' %(module, self.__class__, _get_idstr(self)))
def __init__(self, response): self.status = response.status self.reason = response.reason self.headers = response.msg self.body = response.read() or None response.close()
def __init__(self, host, port=None, timeout=20): HTTPConnection.__init__(self, host, port) self.timeout = timeout
def __init__(self, host, port=None, timeout=20, **kwargs): HTTPSConnection.__init__(self, str(host), port, **kwargs) self.timeout = timeout
def __init__(self, sw): '''Constructor, May be extended, do not override. sw -- soapWriter instance ''' self.sw = None if not isinstance(sw, weakref.ReferenceType) and sw is not None: self.sw = weakref.ref(sw) else: self.sw = sw
def __init__(self, parent, key=None): UserDict.__init__(self) self.parent = weakref.ref(parent) self.list = [] self._func = key or self.default
def __init__(self, parent, key=None): UserDict.__init__(self) self.parent = weakref.ref(parent) self.targetNamespace = None self.list = [] self._func = key or self.default
def __init__(self, sw): '''Constructor, May be extended, do not override. sw -- soapWriter instance ''' self.sw = None if type(sw) != weakref.ReferenceType and sw is not None: self.sw = weakref.ref(sw) else: self.sw = sw