本文整理汇总了Python中types.ModuleType.__version__方法的典型用法代码示例。如果您正苦于以下问题:Python ModuleType.__version__方法的具体用法?Python ModuleType.__version__怎么用?Python ModuleType.__version__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类types.ModuleType
的用法示例。
在下文中一共展示了ModuleType.__version__方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _minversion_test
# 需要导入模块: from types import ModuleType [as 别名]
# 或者: from types.ModuleType import __version__ [as 别名]
def _minversion_test():
from types import ModuleType
test_module = ModuleType(str("test_module"))
test_module.__version__ = '0.12.2'
good_versions = ['0.12', '0.12.1', '0.12.0.dev']
bad_versions = ['1', '1.2rc1']
for version in good_versions:
assert minversion(test_module, version)
for version in bad_versions:
assert not minversion(test_module, version)
示例2: ModuleType
# 需要导入模块: from types import ModuleType [as 别名]
# 或者: from types.ModuleType import __version__ [as 别名]
import collections
import os
import sys
import weakref
from . import __version__
if os.environ.get('PYTHON_MOCK_LIBUV', None) == 'True': # pragma: no cover
from types import ModuleType
from .helpers.mock import Mock
uvcffi = ModuleType('uvcffi')
uvcffi.__version__ = __version__
uvcffi.ffi = Mock()
uvcffi.lib = Mock()
sys.modules['uvcffi'] = uvcffi
c_library_version = __version__
else:
import uvcffi
c_library_version = uvcffi.ffi.string(uvcffi.lib.PYTHON_UV_CFFI_VERSION).decode()
if uvcffi.__version__ != __version__: # pragma: no cover
raise RuntimeError('incompatible cffi base library (%s)' % uvcffi.__version__)