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


Python zip_pkg.foo方法代码示例

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


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

示例1: test_inspect_getsource_issue4223

# 需要导入模块: import zip_pkg [as 别名]
# 或者: from zip_pkg import foo [as 别名]
def test_inspect_getsource_issue4223(self):
        test_src = "def foo(): pass\n"
        with temp_dir() as d:
            init_name = make_script(d, '__init__', test_src)
            name_in_zip = os.path.join('zip_pkg',
                                       os.path.basename(init_name))
            zip_name, run_name = make_zip_script(d, 'test_zip',
                                                init_name, name_in_zip)
            os.remove(init_name)
            sys.path.insert(0, zip_name)
            import zip_pkg
            self.assertEqual(inspect.getsource(zip_pkg.foo), test_src) 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:14,代码来源:test_zipimport_support.py

示例2: test_inspect_getsource_issue4223

# 需要导入模块: import zip_pkg [as 别名]
# 或者: from zip_pkg import foo [as 别名]
def test_inspect_getsource_issue4223(self):
        test_src = "def foo(): pass\n"
        with test.support.temp_dir() as d:
            init_name = make_script(d, '__init__', test_src)
            name_in_zip = os.path.join('zip_pkg',
                                       os.path.basename(init_name))
            zip_name, run_name = make_zip_script(d, 'test_zip',
                                                init_name, name_in_zip)
            os.remove(init_name)
            sys.path.insert(0, zip_name)
            import zip_pkg
            try:
                self.assertEqual(inspect.getsource(zip_pkg.foo), test_src)
            finally:
                del sys.modules["zip_pkg"] 
开发者ID:Microvellum,项目名称:Fluid-Designer,代码行数:17,代码来源:test_zipimport_support.py

示例3: test_inspect_getsource_issue4223

# 需要导入模块: import zip_pkg [as 别名]
# 或者: from zip_pkg import foo [as 别名]
def test_inspect_getsource_issue4223(self):
        test_src = "def foo(): pass\n"
        with temp_dir() as d:
            init_name = make_script(d, '__init__', test_src)
            name_in_zip = os.path.join('zip_pkg',
                                       os.path.basename(init_name))
            zip_name, run_name = make_zip_script(d, 'test_zip',
                                                init_name, name_in_zip)
            os.remove(init_name)
            sys.path.insert(0, zip_name)
            import zip_pkg
            try:
                self.assertEqual(inspect.getsource(zip_pkg.foo), test_src)
            finally:
                del sys.modules["zip_pkg"] 
开发者ID:IronLanguages,项目名称:ironpython3,代码行数:17,代码来源:test_zipimport_support.py


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