当前位置: 首页>>代码示例>>Python>>正文


Python Dict.update方法代码示例

本文整理汇总了Python中mydict.Dict.update方法的典型用法代码示例。如果您正苦于以下问题:Python Dict.update方法的具体用法?Python Dict.update怎么用?Python Dict.update使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在mydict.Dict的用法示例。


在下文中一共展示了Dict.update方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: update

# 需要导入模块: from mydict import Dict [as 别名]
# 或者: from mydict.Dict import update [as 别名]
    def update(self,d,strict=True):
        """Update current values with the specified settings

        Returns the sanitized update values.
        """
        ok = self.checkDict(d,strict)
        Dict.update(self,ok)
开发者ID:dladd,项目名称:pyFormex,代码行数:9,代码来源:canvas.py

示例2: update

# 需要导入模块: from mydict import Dict [as 别名]
# 或者: from mydict.Dict import update [as 别名]
    def update(self, data={}, name=None, removeLocals=False):
        """Add a dictionary to the Config object.

        The data, if specified, should be a valid Python dict.
        If no name is specified, the data are added to the top dictionary
        and will become attributes.
        If a name is specified, the data are added to the named attribute,
        which should be a dictionary. If the name does not specify a
        dictionary, an empty one is created, deleting the existing attribute.

        If a name is specified, but no data, the effect is to add a new
        empty dictionary (section) with that name.

        If removeLocals is set, keys starting with '_' are removed from the
        data before updating the dictionary and not
        included in the config. This behaviour can be changed by setting
        removeLocals to false.
        """
        if removeLocals:
            for k in data.keys():
                if k[0] == "_":
                    del data[k]
        if name:
            if not self.has_key(name) or not isinstance(self[name], dict):
                self[name] = Dict()
            self[name].update(data)
        else:
            Dict.update(self, data)
开发者ID:BackupTheBerlios,项目名称:pyformex-svn,代码行数:30,代码来源:config.py


注:本文中的mydict.Dict.update方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。