我们从Python开源项目中,提取了以下50个代码示例,用于说明如何使用collections.UserDict.__init__()。
def __init__(self, source=None, target=None, deviceid=None, netboxid=None, subid=None, time=None, eventtypeid=None, state=None, value=None, severity=None): UserDict.__init__(self) self.eventqid = None self.source = source self.target = target self.deviceid = deviceid self.netboxid = netboxid self.subid = subid self.time = time self.eventtypeid = eventtypeid self.state = state self.value = value self.severity = severity
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, *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