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


Python sip.__name__方法代码示例

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


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

示例1: _setup

# 需要导入模块: from PyQt5 import sip [as 别名]
# 或者: from PyQt5.sip import __name__ [as 别名]
def _setup(module, extras):
    """Install common submodules"""

    Qt.__binding__ = module.__name__

    for name in list(_common_members) + extras:
        try:
            submodule = _import_sub_module(
                module, name)
        except ImportError:
            try:
                # For extra modules like sip and shiboken that may not be
                # children of the binding.
                submodule = __import__(name)
            except ImportError:
                continue

        setattr(Qt, "_" + name, submodule)

        if name not in extras:
            # Store reference to original binding,
            # but don't store speciality modules
            # such as uic or QtUiTools
            setattr(Qt, name, _new_module(name)) 
开发者ID:nilouco,项目名称:dpAutoRigSystem,代码行数:26,代码来源:Qt.py

示例2: _new_module

# 需要导入模块: from PyQt5 import sip [as 别名]
# 或者: from PyQt5.sip import __name__ [as 别名]
def _new_module(name):
    return types.ModuleType(__name__ + "." + name) 
开发者ID:nilouco,项目名称:dpAutoRigSystem,代码行数:4,代码来源:Qt.py

示例3: _import_sub_module

# 需要导入模块: from PyQt5 import sip [as 别名]
# 或者: from PyQt5.sip import __name__ [as 别名]
def _import_sub_module(module, name):
    """import_sub_module will mimic the function of importlib.import_module"""
    module = __import__(module.__name__ + "." + name)
    for level in name.split("."):
        module = getattr(module, level)
    return module 
开发者ID:nilouco,项目名称:dpAutoRigSystem,代码行数:8,代码来源:Qt.py

示例4: __repr__

# 需要导入模块: from PyQt5 import sip [as 别名]
# 或者: from PyQt5.sip import __name__ [as 别名]
def __repr__(self):
        return "<{}: {}>".format(self.__class__.__name__, self.__name) 
开发者ID:nilouco,项目名称:dpAutoRigSystem,代码行数:4,代码来源:Qt.py


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