| 
									
										
										
										
											2009-02-01 00:49:41 +00:00
										 |  |  | from .. import abc | 
					
						
							| 
									
										
										
										
											2009-02-01 04:00:05 +00:00
										 |  |  | from .. import util | 
					
						
							| 
									
										
										
										
											2009-01-18 00:24:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-25 15:39:02 -04:00
										 |  |  | machinery = util.import_importlib('importlib.machinery') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-10 13:47:54 -04:00
										 |  |  | import os.path | 
					
						
							| 
									
										
										
										
											2009-01-18 00:24:28 +00:00
										 |  |  | import sys | 
					
						
							| 
									
										
										
										
											2013-11-22 09:05:39 -07:00
										 |  |  | import types | 
					
						
							| 
									
										
										
										
											2009-01-18 00:24:28 +00:00
										 |  |  | import unittest | 
					
						
							| 
									
										
										
										
											2015-05-23 22:24:10 +10:00
										 |  |  | import importlib.util | 
					
						
							|  |  |  | import importlib | 
					
						
							| 
									
										
										
										
											2018-03-17 06:41:20 +01:00
										 |  |  | from test.support.script_helper import assert_python_failure | 
					
						
							| 
									
										
										
										
											2009-01-18 00:24:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-25 15:39:02 -04:00
										 |  |  | class LoaderTests(abc.LoaderTests): | 
					
						
							| 
									
										
										
										
											2009-01-18 00:24:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     """Test load_module() for extension modules.""" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-11 14:48:41 -04:00
										 |  |  |     def setUp(self): | 
					
						
							| 
									
										
										
										
											2014-05-09 14:32:57 -04:00
										 |  |  |         self.loader = self.machinery.ExtensionFileLoader(util.EXTENSIONS.name, | 
					
						
							|  |  |  |                                                          util.EXTENSIONS.file_path) | 
					
						
							| 
									
										
										
										
											2012-05-11 14:48:41 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-18 00:24:28 +00:00
										 |  |  |     def load_module(self, fullname): | 
					
						
							| 
									
										
										
										
											2012-05-11 14:48:41 -04:00
										 |  |  |         return self.loader.load_module(fullname) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_load_module_API(self): | 
					
						
							|  |  |  |         # Test the default argument for load_module(). | 
					
						
							|  |  |  |         self.loader.load_module() | 
					
						
							|  |  |  |         self.loader.load_module(None) | 
					
						
							|  |  |  |         with self.assertRaises(ImportError): | 
					
						
							|  |  |  |             self.load_module('XXX') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-04 15:06:49 -07:00
										 |  |  |     def test_equality(self): | 
					
						
							| 
									
										
										
										
											2014-05-09 14:32:57 -04:00
										 |  |  |         other = self.machinery.ExtensionFileLoader(util.EXTENSIONS.name, | 
					
						
							|  |  |  |                                                    util.EXTENSIONS.file_path) | 
					
						
							| 
									
										
										
										
											2014-01-04 15:06:49 -07:00
										 |  |  |         self.assertEqual(self.loader, other) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_inequality(self): | 
					
						
							| 
									
										
										
										
											2014-05-09 14:32:57 -04:00
										 |  |  |         other = self.machinery.ExtensionFileLoader('_' + util.EXTENSIONS.name, | 
					
						
							|  |  |  |                                                    util.EXTENSIONS.file_path) | 
					
						
							| 
									
										
										
										
											2014-01-04 15:06:49 -07:00
										 |  |  |         self.assertNotEqual(self.loader, other) | 
					
						
							| 
									
										
										
										
											2009-01-18 00:24:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-01 00:49:41 +00:00
										 |  |  |     def test_module(self): | 
					
						
							| 
									
										
										
										
											2014-05-09 14:32:57 -04:00
										 |  |  |         with util.uncache(util.EXTENSIONS.name): | 
					
						
							|  |  |  |             module = self.load_module(util.EXTENSIONS.name) | 
					
						
							|  |  |  |             for attr, value in [('__name__', util.EXTENSIONS.name), | 
					
						
							|  |  |  |                                 ('__file__', util.EXTENSIONS.file_path), | 
					
						
							| 
									
										
										
										
											2009-02-07 01:52:25 +00:00
										 |  |  |                                 ('__package__', '')]: | 
					
						
							| 
									
										
										
										
											2009-01-18 00:24:28 +00:00
										 |  |  |                 self.assertEqual(getattr(module, attr), value) | 
					
						
							| 
									
										
										
										
											2014-05-09 14:32:57 -04:00
										 |  |  |             self.assertIn(util.EXTENSIONS.name, sys.modules) | 
					
						
							| 
									
										
										
										
											2012-06-27 15:26:26 -04:00
										 |  |  |             self.assertIsInstance(module.__loader__, | 
					
						
							| 
									
										
										
										
											2013-10-25 15:39:02 -04:00
										 |  |  |                                   self.machinery.ExtensionFileLoader) | 
					
						
							| 
									
										
										
										
											2009-01-18 00:24:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-22 09:05:39 -07:00
										 |  |  |     # No extension module as __init__ available for testing. | 
					
						
							|  |  |  |     test_package = None | 
					
						
							| 
									
										
										
										
											2009-02-01 00:49:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-22 09:05:39 -07:00
										 |  |  |     # No extension module in a package available for testing. | 
					
						
							|  |  |  |     test_lacking_parent = None | 
					
						
							| 
									
										
										
										
											2009-02-01 00:49:41 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def test_module_reuse(self): | 
					
						
							| 
									
										
										
										
											2014-05-09 14:32:57 -04:00
										 |  |  |         with util.uncache(util.EXTENSIONS.name): | 
					
						
							|  |  |  |             module1 = self.load_module(util.EXTENSIONS.name) | 
					
						
							|  |  |  |             module2 = self.load_module(util.EXTENSIONS.name) | 
					
						
							| 
									
										
										
										
											2012-06-27 15:26:26 -04:00
										 |  |  |             self.assertIs(module1, module2) | 
					
						
							| 
									
										
										
										
											2009-02-01 00:49:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-22 09:05:39 -07:00
										 |  |  |     # No easy way to trigger a failure after a successful import. | 
					
						
							|  |  |  |     test_state_after_failure = None | 
					
						
							| 
									
										
										
										
											2009-02-01 00:49:41 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def test_unloadable(self): | 
					
						
							| 
									
										
										
										
											2012-04-12 21:09:01 -04:00
										 |  |  |         name = 'asdfjkl;' | 
					
						
							|  |  |  |         with self.assertRaises(ImportError) as cm: | 
					
						
							|  |  |  |             self.load_module(name) | 
					
						
							|  |  |  |         self.assertEqual(cm.exception.name, name) | 
					
						
							| 
									
										
										
										
											2009-01-18 00:24:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-10 13:47:54 -04:00
										 |  |  |     def test_is_package(self): | 
					
						
							| 
									
										
										
										
											2014-05-09 14:32:57 -04:00
										 |  |  |         self.assertFalse(self.loader.is_package(util.EXTENSIONS.name)) | 
					
						
							| 
									
										
										
										
											2013-10-25 15:39:02 -04:00
										 |  |  |         for suffix in self.machinery.EXTENSION_SUFFIXES: | 
					
						
							| 
									
										
										
										
											2012-08-10 13:47:54 -04:00
										 |  |  |             path = os.path.join('some', 'path', 'pkg', '__init__' + suffix) | 
					
						
							| 
									
										
										
										
											2013-10-25 15:39:02 -04:00
										 |  |  |             loader = self.machinery.ExtensionFileLoader('pkg', path) | 
					
						
							| 
									
										
										
										
											2012-08-10 13:47:54 -04:00
										 |  |  |             self.assertTrue(loader.is_package('pkg')) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-16 11:40:40 -06:00
										 |  |  | (Frozen_LoaderTests, | 
					
						
							|  |  |  |  Source_LoaderTests | 
					
						
							|  |  |  |  ) = util.test_both(LoaderTests, machinery=machinery) | 
					
						
							| 
									
										
										
										
											2009-01-18 00:24:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-23 22:24:10 +10:00
										 |  |  | class MultiPhaseExtensionModuleTests(abc.LoaderTests): | 
					
						
							|  |  |  |     """Test loading extension modules with multi-phase initialization (PEP 489)
 | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def setUp(self): | 
					
						
							|  |  |  |         self.name = '_testmultiphase' | 
					
						
							|  |  |  |         finder = self.machinery.FileFinder(None) | 
					
						
							|  |  |  |         self.spec = importlib.util.find_spec(self.name) | 
					
						
							|  |  |  |         assert self.spec | 
					
						
							|  |  |  |         self.loader = self.machinery.ExtensionFileLoader( | 
					
						
							|  |  |  |             self.name, self.spec.origin) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # No extension module as __init__ available for testing. | 
					
						
							|  |  |  |     test_package = None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # No extension module in a package available for testing. | 
					
						
							|  |  |  |     test_lacking_parent = None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Handling failure on reload is the up to the module. | 
					
						
							|  |  |  |     test_state_after_failure = None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_module(self): | 
					
						
							|  |  |  |         '''Test loading an extension module''' | 
					
						
							|  |  |  |         with util.uncache(self.name): | 
					
						
							|  |  |  |             module = self.load_module() | 
					
						
							|  |  |  |             for attr, value in [('__name__', self.name), | 
					
						
							|  |  |  |                                 ('__file__', self.spec.origin), | 
					
						
							|  |  |  |                                 ('__package__', '')]: | 
					
						
							|  |  |  |                 self.assertEqual(getattr(module, attr), value) | 
					
						
							|  |  |  |             with self.assertRaises(AttributeError): | 
					
						
							|  |  |  |                 module.__path__ | 
					
						
							|  |  |  |             self.assertIs(module, sys.modules[self.name]) | 
					
						
							|  |  |  |             self.assertIsInstance(module.__loader__, | 
					
						
							|  |  |  |                                   self.machinery.ExtensionFileLoader) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_functionality(self): | 
					
						
							|  |  |  |         '''Test basic functionality of stuff defined in an extension module''' | 
					
						
							|  |  |  |         with util.uncache(self.name): | 
					
						
							|  |  |  |             module = self.load_module() | 
					
						
							|  |  |  |             self.assertIsInstance(module, types.ModuleType) | 
					
						
							|  |  |  |             ex = module.Example() | 
					
						
							|  |  |  |             self.assertEqual(ex.demo('abcd'), 'abcd') | 
					
						
							|  |  |  |             self.assertEqual(ex.demo(), None) | 
					
						
							|  |  |  |             with self.assertRaises(AttributeError): | 
					
						
							|  |  |  |                 ex.abc | 
					
						
							|  |  |  |             ex.abc = 0 | 
					
						
							|  |  |  |             self.assertEqual(ex.abc, 0) | 
					
						
							|  |  |  |             self.assertEqual(module.foo(9, 9), 18) | 
					
						
							|  |  |  |             self.assertIsInstance(module.Str(), str) | 
					
						
							|  |  |  |             self.assertEqual(module.Str(1) + '23', '123') | 
					
						
							|  |  |  |             with self.assertRaises(module.error): | 
					
						
							|  |  |  |                 raise module.error() | 
					
						
							|  |  |  |             self.assertEqual(module.int_const, 1969) | 
					
						
							|  |  |  |             self.assertEqual(module.str_const, 'something different') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_reload(self): | 
					
						
							|  |  |  |         '''Test that reload didn't re-set the module's attributes''' | 
					
						
							|  |  |  |         with util.uncache(self.name): | 
					
						
							|  |  |  |             module = self.load_module() | 
					
						
							|  |  |  |             ex_class = module.Example | 
					
						
							|  |  |  |             importlib.reload(module) | 
					
						
							|  |  |  |             self.assertIs(ex_class, module.Example) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_try_registration(self): | 
					
						
							|  |  |  |         '''Assert that the PyState_{Find,Add,Remove}Module C API doesn't work''' | 
					
						
							|  |  |  |         module = self.load_module() | 
					
						
							|  |  |  |         with self.subTest('PyState_FindModule'): | 
					
						
							|  |  |  |             self.assertEqual(module.call_state_registration_func(0), None) | 
					
						
							|  |  |  |         with self.subTest('PyState_AddModule'): | 
					
						
							|  |  |  |             with self.assertRaises(SystemError): | 
					
						
							|  |  |  |                 module.call_state_registration_func(1) | 
					
						
							|  |  |  |         with self.subTest('PyState_RemoveModule'): | 
					
						
							|  |  |  |             with self.assertRaises(SystemError): | 
					
						
							|  |  |  |                 module.call_state_registration_func(2) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def load_module(self): | 
					
						
							|  |  |  |         '''Load the module from the test extension''' | 
					
						
							|  |  |  |         return self.loader.load_module(self.name) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def load_module_by_name(self, fullname): | 
					
						
							|  |  |  |         '''Load a module from the test extension by name''' | 
					
						
							|  |  |  |         origin = self.spec.origin | 
					
						
							|  |  |  |         loader = self.machinery.ExtensionFileLoader(fullname, origin) | 
					
						
							|  |  |  |         spec = importlib.util.spec_from_loader(fullname, loader) | 
					
						
							|  |  |  |         module = importlib.util.module_from_spec(spec) | 
					
						
							|  |  |  |         loader.exec_module(module) | 
					
						
							|  |  |  |         return module | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-26 21:48:17 +10:00
										 |  |  |     def test_load_submodule(self): | 
					
						
							|  |  |  |         '''Test loading a simulated submodule''' | 
					
						
							|  |  |  |         module = self.load_module_by_name('pkg.' + self.name) | 
					
						
							|  |  |  |         self.assertIsInstance(module, types.ModuleType) | 
					
						
							|  |  |  |         self.assertEqual(module.__name__, 'pkg.' + self.name) | 
					
						
							|  |  |  |         self.assertEqual(module.str_const, 'something different') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-29 17:10:30 -05:00
										 |  |  |     def test_load_short_name(self): | 
					
						
							|  |  |  |         '''Test loading module with a one-character name''' | 
					
						
							|  |  |  |         module = self.load_module_by_name('x') | 
					
						
							|  |  |  |         self.assertIsInstance(module, types.ModuleType) | 
					
						
							|  |  |  |         self.assertEqual(module.__name__, 'x') | 
					
						
							|  |  |  |         self.assertEqual(module.str_const, 'something different') | 
					
						
							| 
									
										
										
										
											2015-05-29 18:44:45 -05:00
										 |  |  |         self.assertNotIn('x', sys.modules) | 
					
						
							| 
									
										
										
										
											2015-05-29 17:10:30 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-23 22:24:10 +10:00
										 |  |  |     def test_load_twice(self): | 
					
						
							|  |  |  |         '''Test that 2 loads result in 2 module objects''' | 
					
						
							|  |  |  |         module1 = self.load_module_by_name(self.name) | 
					
						
							|  |  |  |         module2 = self.load_module_by_name(self.name) | 
					
						
							|  |  |  |         self.assertIsNot(module1, module2) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_unloadable(self): | 
					
						
							|  |  |  |         '''Test nonexistent module''' | 
					
						
							|  |  |  |         name = 'asdfjkl;' | 
					
						
							|  |  |  |         with self.assertRaises(ImportError) as cm: | 
					
						
							|  |  |  |             self.load_module_by_name(name) | 
					
						
							|  |  |  |         self.assertEqual(cm.exception.name, name) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_unloadable_nonascii(self): | 
					
						
							|  |  |  |         '''Test behavior with nonexistent module with non-ASCII name''' | 
					
						
							|  |  |  |         name = 'fo\xf3' | 
					
						
							|  |  |  |         with self.assertRaises(ImportError) as cm: | 
					
						
							|  |  |  |             self.load_module_by_name(name) | 
					
						
							|  |  |  |         self.assertEqual(cm.exception.name, name) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_nonmodule(self): | 
					
						
							|  |  |  |         '''Test returning a non-module object from create works''' | 
					
						
							|  |  |  |         name = self.name + '_nonmodule' | 
					
						
							|  |  |  |         mod = self.load_module_by_name(name) | 
					
						
							|  |  |  |         self.assertNotEqual(type(mod), type(unittest)) | 
					
						
							|  |  |  |         self.assertEqual(mod.three, 3) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-21 17:41:56 +10:00
										 |  |  |     # issue 27782 | 
					
						
							|  |  |  |     def test_nonmodule_with_methods(self): | 
					
						
							|  |  |  |         '''Test creating a non-module object with methods defined''' | 
					
						
							|  |  |  |         name = self.name + '_nonmodule_with_methods' | 
					
						
							|  |  |  |         mod = self.load_module_by_name(name) | 
					
						
							|  |  |  |         self.assertNotEqual(type(mod), type(unittest)) | 
					
						
							|  |  |  |         self.assertEqual(mod.three, 3) | 
					
						
							|  |  |  |         self.assertEqual(mod.bar(10, 1), 9) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-23 22:24:10 +10:00
										 |  |  |     def test_null_slots(self): | 
					
						
							|  |  |  |         '''Test that NULL slots aren't a problem''' | 
					
						
							|  |  |  |         name = self.name + '_null_slots' | 
					
						
							|  |  |  |         module = self.load_module_by_name(name) | 
					
						
							|  |  |  |         self.assertIsInstance(module, types.ModuleType) | 
					
						
							| 
									
										
										
										
											2015-05-30 00:02:17 -05:00
										 |  |  |         self.assertEqual(module.__name__, name) | 
					
						
							| 
									
										
										
										
											2015-05-23 22:24:10 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def test_bad_modules(self): | 
					
						
							|  |  |  |         '''Test SystemError is raised for misbehaving extensions''' | 
					
						
							|  |  |  |         for name_base in [ | 
					
						
							|  |  |  |                 'bad_slot_large', | 
					
						
							|  |  |  |                 'bad_slot_negative', | 
					
						
							|  |  |  |                 'create_int_with_state', | 
					
						
							|  |  |  |                 'negative_size', | 
					
						
							|  |  |  |                 'export_null', | 
					
						
							|  |  |  |                 'export_uninitialized', | 
					
						
							|  |  |  |                 'export_raise', | 
					
						
							|  |  |  |                 'export_unreported_exception', | 
					
						
							|  |  |  |                 'create_null', | 
					
						
							|  |  |  |                 'create_raise', | 
					
						
							|  |  |  |                 'create_unreported_exception', | 
					
						
							|  |  |  |                 'nonmodule_with_exec_slots', | 
					
						
							|  |  |  |                 'exec_err', | 
					
						
							|  |  |  |                 'exec_raise', | 
					
						
							|  |  |  |                 'exec_unreported_exception', | 
					
						
							|  |  |  |                 ]: | 
					
						
							|  |  |  |             with self.subTest(name_base): | 
					
						
							|  |  |  |                 name = self.name + '_' + name_base | 
					
						
							|  |  |  |                 with self.assertRaises(SystemError): | 
					
						
							|  |  |  |                     self.load_module_by_name(name) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_nonascii(self): | 
					
						
							|  |  |  |         '''Test that modules with non-ASCII names can be loaded''' | 
					
						
							|  |  |  |         # punycode behaves slightly differently in some-ASCII and no-ASCII | 
					
						
							|  |  |  |         # cases, so test both | 
					
						
							|  |  |  |         cases = [ | 
					
						
							|  |  |  |             (self.name + '_zkou\u0161ka_na\u010dten\xed', 'Czech'), | 
					
						
							|  |  |  |             ('\uff3f\u30a4\u30f3\u30dd\u30fc\u30c8\u30c6\u30b9\u30c8', | 
					
						
							|  |  |  |              'Japanese'), | 
					
						
							|  |  |  |             ] | 
					
						
							|  |  |  |         for name, lang in cases: | 
					
						
							|  |  |  |             with self.subTest(name): | 
					
						
							|  |  |  |                 module = self.load_module_by_name(name) | 
					
						
							|  |  |  |                 self.assertEqual(module.__name__, name) | 
					
						
							|  |  |  |                 self.assertEqual(module.__doc__, "Module named in %s" % lang) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-17 06:41:20 +01:00
										 |  |  |     @unittest.skipIf(not hasattr(sys, 'gettotalrefcount'), | 
					
						
							|  |  |  |             '--with-pydebug has to be enabled for this test') | 
					
						
							|  |  |  |     def test_bad_traverse(self): | 
					
						
							|  |  |  |         ''' Issue #32374: Test that traverse fails when accessing per-module
 | 
					
						
							|  |  |  |             state before Py_mod_exec was executed. | 
					
						
							|  |  |  |             (Multiphase initialization modules only) | 
					
						
							|  |  |  |         '''
 | 
					
						
							|  |  |  |         script = """if True:
 | 
					
						
							| 
									
										
										
										
											2018-05-28 14:11:20 +02:00
										 |  |  |                 try: | 
					
						
							|  |  |  |                     from test import support | 
					
						
							|  |  |  |                     import importlib.util as util | 
					
						
							|  |  |  |                     spec = util.find_spec('_testmultiphase') | 
					
						
							|  |  |  |                     spec.name = '_testmultiphase_with_bad_traverse' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     with support.SuppressCrashReport(): | 
					
						
							|  |  |  |                         m = spec.loader.create_module(spec) | 
					
						
							|  |  |  |                 except: | 
					
						
							|  |  |  |                     # Prevent Python-level exceptions from | 
					
						
							|  |  |  |                     # ending the process with non-zero status | 
					
						
							|  |  |  |                     # (We are testing for a crash in C-code) | 
					
						
							|  |  |  |                     pass"""
 | 
					
						
							| 
									
										
										
										
											2018-03-17 06:41:20 +01:00
										 |  |  |         assert_python_failure("-c", script) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-23 22:24:10 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | (Frozen_MultiPhaseExtensionModuleTests, | 
					
						
							|  |  |  |  Source_MultiPhaseExtensionModuleTests | 
					
						
							|  |  |  |  ) = util.test_both(MultiPhaseExtensionModuleTests, machinery=machinery) | 
					
						
							| 
									
										
										
										
											2009-01-18 00:24:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if __name__ == '__main__': | 
					
						
							| 
									
										
										
										
											2013-10-25 15:39:02 -04:00
										 |  |  |     unittest.main() |