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


Python types.GetSetDescriptorType方法代码示例

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


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

示例1: isgetsetdescriptor

# 需要导入模块: import types [as 别名]
# 或者: from types import GetSetDescriptorType [as 别名]
def isgetsetdescriptor(object):
        """Return true if the object is a getset descriptor.

        getset descriptors are specialized descriptors defined in extension
        modules."""
        return isinstance(object, types.GetSetDescriptorType) 
开发者ID:war-and-code,项目名称:jawfish,代码行数:8,代码来源:inspect.py

示例2: _shadowed_dict

# 需要导入模块: import types [as 别名]
# 或者: from types import GetSetDescriptorType [as 别名]
def _shadowed_dict(klass):
    dict_attr = type.__dict__["__dict__"]
    for entry in _static_getmro(klass):
        try:
            class_dict = dict_attr.__get__(entry)["__dict__"]
        except KeyError:
            pass
        else:
            if not (type(class_dict) is types.GetSetDescriptorType and
                    class_dict.__name__ == "__dict__" and
                    class_dict.__objclass__ is entry):
                return class_dict
    return _sentinel 
开发者ID:war-and-code,项目名称:jawfish,代码行数:15,代码来源:inspect.py

示例3: _shadowed_dict_newstyle

# 需要导入模块: import types [as 别名]
# 或者: from types import GetSetDescriptorType [as 别名]
def _shadowed_dict_newstyle(klass):
    dict_attr = type.__dict__['__dict__']
    for entry in _static_getmro(klass):
        try:
            class_dict = dict_attr.__get__(entry)['__dict__']
        except KeyError:
            pass
        else:
            if not (type(class_dict) is types.GetSetDescriptorType and  # noqa
                    class_dict.__name__ == '__dict__' and
                    class_dict.__objclass__ is entry):
                return class_dict
    return _sentinel 
开发者ID:ionelmc,项目名称:python-hunter,代码行数:15,代码来源:inspect.py

示例4: save_dictproxy

# 需要导入模块: import types [as 别名]
# 或者: from types import GetSetDescriptorType [as 别名]
def save_dictproxy(pickler, obj):
        log.info("Dp: %s" % obj)
        attr = obj.get('__dict__')
       #pickler.save_reduce(_create_dictproxy, (attr,'nested'), obj=obj)
        if type(attr) == GetSetDescriptorType and attr.__name__ == "__dict__" \
        and getattr(attr.__objclass__, "__dict__", None) == obj:
            pickler.save_reduce(getattr, (attr.__objclass__,"__dict__"),obj=obj)
            return
        # all bad below... so throw ReferenceError or TypeError
        from weakref import ReferenceError
        raise ReferenceError("%s does not reference a class __dict__" % obj) 
开发者ID:dagbldr,项目名称:dagbldr,代码行数:13,代码来源:dill.py


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