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


Python DictMixin.pop方法代码示例

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


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

示例1: __delitem__

# 需要导入模块: from UserDict import DictMixin [as 别名]
# 或者: from UserDict.DictMixin import pop [as 别名]
def __delitem__(self, key):
        dict.__delitem__(self, key)
        key, prev, next = self.__map.pop(key)
        prev[2] = next
        next[1] = prev 
开发者ID:ME-ICA,项目名称:me-ica,代码行数:7,代码来源:_ordered_dict.py

示例2: popitem

# 需要导入模块: from UserDict import DictMixin [as 别名]
# 或者: from UserDict.DictMixin import pop [as 别名]
def popitem(self, last=True):
        if not self:
            raise KeyError('dictionary is empty')
        if last:
            key = reversed(self).next()
        else:
            key = iter(self).next()
        value = self.pop(key)
        return key, value 
开发者ID:ME-ICA,项目名称:me-ica,代码行数:11,代码来源:_ordered_dict.py

示例3: __delitem__

# 需要导入模块: from UserDict import DictMixin [as 别名]
# 或者: from UserDict.DictMixin import pop [as 别名]
def __delitem__(self, key):
        dict.__delitem__(self, key)
        self.__map.pop(key)
        self.__order = self.null 
开发者ID:AtomLinter,项目名称:linter-pylama,代码行数:6,代码来源:inirama.py

示例4: popitem

# 需要导入模块: from UserDict import DictMixin [as 别名]
# 或者: from UserDict.DictMixin import pop [as 别名]
def popitem(self, last=True):
        if not self:
            raise KeyError('dictionary is empty')
        # Modified from original to support Python 2.4, see
        # http://code.google.com/p/simplejson/issues/detail?id=53
        if last:
            key = reversed(self).next()
        else:
            key = iter(self).next()
        value = self.pop(key)
        return key, value 
开发者ID:gkudos,项目名称:qgis-cartodb,代码行数:13,代码来源:ordered_dict.py

示例5: __delitem__

# 需要导入模块: from UserDict import DictMixin [as 别名]
# 或者: from UserDict.DictMixin import pop [as 别名]
def __delitem__(self, key):
            dict.__delitem__(self, key)
            key, prev, next = self.__map.pop(key)
            prev[2] = next
            next[1] = prev 
开发者ID:SrikanthVelpuri,项目名称:tf-pose,代码行数:7,代码来源:ordereddict.py

示例6: popitem

# 需要导入模块: from UserDict import DictMixin [as 别名]
# 或者: from UserDict.DictMixin import pop [as 别名]
def popitem(self, last=True):
            if not self:
                raise KeyError('dictionary is empty')
            if last:
                key = reversed(self).next()
            else:
                key = iter(self).next()
            value = self.pop(key)
            return key, value 
开发者ID:SrikanthVelpuri,项目名称:tf-pose,代码行数:11,代码来源:ordereddict.py


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