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


Python DictMixin.values方法代码示例

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


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

示例1: read

# 需要导入模块: from UserDict import DictMixin [as 别名]
# 或者: from UserDict.DictMixin import values [as 别名]
def read(self, *files, **params):
        """ Read and parse INI files.

        :param *files: Files for reading
        :param **params: Params for parsing

        Set `update=False` for prevent values redefinition.

        """
        for f in files:
            try:
                with io.open(f, encoding='utf-8') as ff:
                    NS_LOGGER.info('Read from `{0}`'.format(ff.name))
                    self.parse(ff.read(), **params)
            except (IOError, TypeError, SyntaxError, io.UnsupportedOperation):
                if not self.silent_read:
                    NS_LOGGER.error('Reading error `{0}`'.format(ff.name))
                    raise 
开发者ID:AtomLinter,项目名称:linter-pylama,代码行数:20,代码来源:inirama.py

示例2: __delitem__

# 需要导入模块: from UserDict import DictMixin [as 别名]
# 或者: from UserDict.DictMixin import values [as 别名]
def __delitem__(self, elem):
            '''Like dict.__delitem__() but does not raise KeyError for
            missing values.'''
            if elem in self:
                dict.__delitem__(self, elem) 
开发者ID:muhanzhang,项目名称:D-VAE,代码行数:7,代码来源:python2x.py

示例3: kvquery

# 需要导入模块: from UserDict import DictMixin [as 别名]
# 或者: from UserDict.DictMixin import values [as 别名]
def kvquery(root, **kwargs):
    '''kvquery provides a convinient way of finding widgets in an
    application that uses the kv style language.

    example:
        lets say you have a .kv file with the following Rule:
        <MovieWidget>:
            BoxLayout:
                Video:
                    kvid: 'video'
                Label:
                    text: root.movie_title
                Label:
                    text: root.movie_description

        in your python code, you may want to get the reference to
        Video widget nested inside the widget you have a handle to.

        # video will be the first node that jas a 'kvid' property == 'video'
        video = kvquery(movie, kvid='video').next()


        #lets get all teh labels in a list
        labels = list(kvquery(movie, __class__=Label))


    :Parameters:
    `root`: root of the tree to queried
        this node and all decendants will be iterated by the
        returned generator.

    `**kwargs`: **kwargs, key/value pairs
        The keys corrosponf to porperty names, and values to the
        property values of the widget nodes being queried.  If a node
        has at least one attr such that (gettattr(node, key) == value)
        is true; it will be included in the iteration.
    '''

    def _query(w):
        '''iternal query function / predicate for tree query
        '''
        for k, v in kwargs.iteritems():
            if (v == getattr(w, k, None)):
                return True


    return filter_tree(root, _query) 
开发者ID:autosportlabs,项目名称:RaceCapture_App,代码行数:49,代码来源:utils.py


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