| 
									
										
										
										
											2012-04-15 16:08:47 -04:00
										 |  |  | """This module provides the components needed to build your own __import__
 | 
					
						
							|  |  |  | function.  Undocumented functions are obsolete. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | In most cases it is preferred you consider using the importlib module's | 
					
						
							|  |  |  | functionality over this module. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | # (Probably) need to stay in _imp | 
					
						
							| 
									
										
										
										
											2012-04-29 14:38:11 -04:00
										 |  |  | from _imp import (lock_held, acquire_lock, release_lock, | 
					
						
							| 
									
										
										
										
											2013-03-17 15:48:16 -07:00
										 |  |  |                   get_frozen_object, is_frozen_package, | 
					
						
							| 
									
										
										
										
											2015-05-23 22:24:10 +10:00
										 |  |  |                   init_frozen, is_builtin, is_frozen, | 
					
						
							| 
									
										
										
										
											2012-08-10 13:47:54 -04:00
										 |  |  |                   _fix_co_filename) | 
					
						
							| 
									
										
										
										
											2013-03-17 15:48:16 -07:00
										 |  |  | try: | 
					
						
							| 
									
										
										
										
											2015-05-23 22:24:10 +10:00
										 |  |  |     from _imp import create_dynamic | 
					
						
							| 
									
										
										
										
											2013-07-04 17:43:24 -04:00
										 |  |  | except ImportError: | 
					
						
							| 
									
										
										
										
											2013-03-17 15:48:16 -07:00
										 |  |  |     # Platform doesn't support dynamic loading. | 
					
						
							| 
									
										
										
										
											2015-05-23 22:24:10 +10:00
										 |  |  |     create_dynamic = None | 
					
						
							| 
									
										
										
										
											2012-04-15 16:08:47 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-23 22:24:10 +10:00
										 |  |  | from importlib._bootstrap import _ERR_MSG, _exec, _load, _builtin_from_name | 
					
						
							| 
									
										
										
										
											2015-05-02 19:15:18 -06:00
										 |  |  | from importlib._bootstrap_external import SourcelessFileLoader | 
					
						
							| 
									
										
										
										
											2012-04-15 20:25:23 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-11 12:58:42 -04:00
										 |  |  | from importlib import machinery | 
					
						
							| 
									
										
										
										
											2013-06-14 19:02:34 -04:00
										 |  |  | from importlib import util | 
					
						
							| 
									
										
										
										
											2013-06-14 15:04:26 -04:00
										 |  |  | import importlib | 
					
						
							| 
									
										
										
										
											2012-04-15 22:28:28 -04:00
										 |  |  | import os | 
					
						
							| 
									
										
										
										
											2012-04-21 21:09:46 -04:00
										 |  |  | import sys | 
					
						
							|  |  |  | import tokenize | 
					
						
							| 
									
										
										
										
											2013-06-14 22:26:30 -04:00
										 |  |  | import types | 
					
						
							| 
									
										
										
										
											2012-05-11 12:58:42 -04:00
										 |  |  | import warnings | 
					
						
							| 
									
										
										
										
											2012-04-21 21:09:46 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-16 13:13:40 -04:00
										 |  |  | warnings.warn("the imp module is deprecated in favour of importlib; " | 
					
						
							|  |  |  |               "see the module's documentation for alternative uses", | 
					
						
							| 
									
										
										
										
											2015-03-27 12:56:57 -04:00
										 |  |  |               PendingDeprecationWarning, stacklevel=2) | 
					
						
							| 
									
										
										
										
											2012-04-21 21:09:46 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-11 14:48:41 -04:00
										 |  |  | # DEPRECATED | 
					
						
							| 
									
										
										
										
											2012-04-21 21:09:46 -04:00
										 |  |  | SEARCH_ERROR = 0 | 
					
						
							|  |  |  | PY_SOURCE = 1 | 
					
						
							|  |  |  | PY_COMPILED = 2 | 
					
						
							|  |  |  | C_EXTENSION = 3 | 
					
						
							|  |  |  | PY_RESOURCE = 4 | 
					
						
							|  |  |  | PKG_DIRECTORY = 5 | 
					
						
							|  |  |  | C_BUILTIN = 6 | 
					
						
							|  |  |  | PY_FROZEN = 7 | 
					
						
							|  |  |  | PY_CODERESOURCE = 8 | 
					
						
							|  |  |  | IMP_HOOK = 9 | 
					
						
							| 
									
										
										
										
											2012-04-15 22:28:28 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-14 22:26:30 -04:00
										 |  |  | def new_module(name): | 
					
						
							|  |  |  |     """**DEPRECATED**
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Create a new module. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     The module is not entered into sys.modules. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     return types.ModuleType(name) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-09 16:09:00 -04:00
										 |  |  | def get_magic(): | 
					
						
							| 
									
										
										
										
											2013-06-14 19:02:34 -04:00
										 |  |  |     """**DEPRECATED**
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-13 14:21:02 -04:00
										 |  |  |     Return the magic number for .pyc files. | 
					
						
							| 
									
										
										
										
											2013-06-14 19:02:34 -04:00
										 |  |  |     """
 | 
					
						
							|  |  |  |     return util.MAGIC_NUMBER | 
					
						
							| 
									
										
										
										
											2012-07-09 16:09:00 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-02 15:13:11 -04:00
										 |  |  | def get_tag(): | 
					
						
							| 
									
										
										
										
											2015-04-13 14:21:02 -04:00
										 |  |  |     """Return the magic tag for .pyc files.""" | 
					
						
							| 
									
										
										
										
											2012-07-02 15:13:11 -04:00
										 |  |  |     return sys.implementation.cache_tag | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-14 22:35:40 -04:00
										 |  |  | def cache_from_source(path, debug_override=None): | 
					
						
							|  |  |  |     """**DEPRECATED**
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-13 14:21:02 -04:00
										 |  |  |     Given the path to a .py file, return the path to its .pyc file. | 
					
						
							| 
									
										
										
										
											2013-06-14 22:35:40 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     The .py file does not need to exist; this simply returns the path to the | 
					
						
							| 
									
										
										
										
											2015-04-13 14:21:02 -04:00
										 |  |  |     .pyc file calculated as if the .py file were imported. | 
					
						
							| 
									
										
										
										
											2013-06-14 22:35:40 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     If debug_override is not None, then it must be a boolean and is used in | 
					
						
							|  |  |  |     place of sys.flags.optimize. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     If sys.implementation.cache_tag is None then NotImplementedError is raised. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2015-04-13 14:21:02 -04:00
										 |  |  |     with warnings.catch_warnings(): | 
					
						
							|  |  |  |         warnings.simplefilter('ignore') | 
					
						
							|  |  |  |         return util.cache_from_source(path, debug_override) | 
					
						
							| 
									
										
										
										
											2013-06-14 22:35:40 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def source_from_cache(path): | 
					
						
							|  |  |  |     """**DEPRECATED**
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-13 14:21:02 -04:00
										 |  |  |     Given the path to a .pyc. file, return the path to its .py file. | 
					
						
							| 
									
										
										
										
											2013-06-14 22:35:40 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-13 14:21:02 -04:00
										 |  |  |     The .pyc file does not need to exist; this simply returns the path to | 
					
						
							|  |  |  |     the .py file calculated to correspond to the .pyc file.  If path does | 
					
						
							| 
									
										
										
										
											2013-06-14 22:35:40 -04:00
										 |  |  |     not conform to PEP 3147 format, ValueError will be raised. If | 
					
						
							|  |  |  |     sys.implementation.cache_tag is None then NotImplementedError is raised. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     return util.source_from_cache(path) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-04 15:20:40 -04:00
										 |  |  | def get_suffixes(): | 
					
						
							| 
									
										
										
										
											2013-06-16 13:13:40 -04:00
										 |  |  |     """**DEPRECATED**""" | 
					
						
							| 
									
										
										
										
											2012-08-10 13:47:54 -04:00
										 |  |  |     extensions = [(s, 'rb', C_EXTENSION) for s in machinery.EXTENSION_SUFFIXES] | 
					
						
							| 
									
										
										
										
											2013-11-23 22:12:06 +02:00
										 |  |  |     source = [(s, 'r', PY_SOURCE) for s in machinery.SOURCE_SUFFIXES] | 
					
						
							| 
									
										
										
										
											2012-05-11 12:58:42 -04:00
										 |  |  |     bytecode = [(s, 'rb', PY_COMPILED) for s in machinery.BYTECODE_SUFFIXES] | 
					
						
							| 
									
										
										
										
											2012-05-04 15:20:40 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return extensions + source + bytecode | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-29 12:50:03 -04:00
										 |  |  | class NullImporter: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-16 13:13:40 -04:00
										 |  |  |     """**DEPRECATED**
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Null import object. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2012-04-29 12:50:03 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def __init__(self, path): | 
					
						
							|  |  |  |         if path == '': | 
					
						
							|  |  |  |             raise ImportError('empty pathname', path='') | 
					
						
							|  |  |  |         elif os.path.isdir(path): | 
					
						
							|  |  |  |             raise ImportError('existing directory', path=path) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def find_module(self, fullname): | 
					
						
							|  |  |  |         """Always returns None.""" | 
					
						
							|  |  |  |         return None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-17 19:14:26 -04:00
										 |  |  | class _HackedGetData: | 
					
						
							| 
									
										
										
										
											2012-04-16 22:11:25 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-14 15:43:00 -05:00
										 |  |  |     """Compatibility support for 'file' arguments of various load_*()
 | 
					
						
							| 
									
										
										
										
											2012-04-17 19:14:26 -04:00
										 |  |  |     functions."""
 | 
					
						
							| 
									
										
										
										
											2012-04-16 22:11:25 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def __init__(self, fullname, path, file=None): | 
					
						
							|  |  |  |         super().__init__(fullname, path) | 
					
						
							|  |  |  |         self.file = file | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def get_data(self, path): | 
					
						
							| 
									
										
										
										
											2012-04-17 19:14:26 -04:00
										 |  |  |         """Gross hack to contort loader to deal w/ load_*()'s bad API.""" | 
					
						
							| 
									
										
										
										
											2012-04-22 19:58:33 -04:00
										 |  |  |         if self.file and path == self.path: | 
					
						
							| 
									
										
										
										
											2013-08-23 11:45:57 -04:00
										 |  |  |             if not self.file.closed: | 
					
						
							|  |  |  |                 file = self.file | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 self.file = file = open(self.path, 'r') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             with file: | 
					
						
							| 
									
										
										
										
											2012-04-16 22:11:25 -04:00
										 |  |  |                 # Technically should be returning bytes, but | 
					
						
							|  |  |  |                 # SourceLoader.get_code() just passed what is returned to | 
					
						
							|  |  |  |                 # compile() which can handle str. And converting to bytes would | 
					
						
							|  |  |  |                 # require figuring out the encoding to decode to and | 
					
						
							|  |  |  |                 # tokenize.detect_encoding() only accepts bytes. | 
					
						
							| 
									
										
										
										
											2013-08-23 11:45:57 -04:00
										 |  |  |                 return file.read() | 
					
						
							| 
									
										
										
										
											2012-04-16 22:11:25 -04:00
										 |  |  |         else: | 
					
						
							|  |  |  |             return super().get_data(path) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-14 22:29:58 -04:00
										 |  |  | class _LoadSourceCompatibility(_HackedGetData, machinery.SourceFileLoader): | 
					
						
							| 
									
										
										
										
											2012-04-17 19:14:26 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     """Compatibility support for implementing load_source().""" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-16 22:11:25 -04:00
										 |  |  | def load_source(name, pathname, file=None): | 
					
						
							| 
									
										
										
										
											2013-11-22 09:05:39 -07:00
										 |  |  |     loader = _LoadSourceCompatibility(name, pathname, file) | 
					
						
							|  |  |  |     spec = util.spec_from_file_location(name, pathname, loader=loader) | 
					
						
							|  |  |  |     if name in sys.modules: | 
					
						
							| 
									
										
										
										
											2014-05-30 14:55:29 -04:00
										 |  |  |         module = _exec(spec, sys.modules[name]) | 
					
						
							| 
									
										
										
										
											2013-11-22 09:05:39 -07:00
										 |  |  |     else: | 
					
						
							| 
									
										
										
										
											2014-05-30 14:55:29 -04:00
										 |  |  |         module = _load(spec) | 
					
						
							| 
									
										
										
										
											2013-04-28 11:53:26 -04:00
										 |  |  |     # To allow reloading to potentially work, use a non-hacked loader which | 
					
						
							|  |  |  |     # won't rely on a now-closed file object. | 
					
						
							| 
									
										
										
										
											2013-06-14 22:29:58 -04:00
										 |  |  |     module.__loader__ = machinery.SourceFileLoader(name, pathname) | 
					
						
							| 
									
										
										
										
											2013-11-22 09:05:39 -07:00
										 |  |  |     module.__spec__.loader = module.__loader__ | 
					
						
							| 
									
										
										
										
											2013-04-28 11:53:26 -04:00
										 |  |  |     return module | 
					
						
							| 
									
										
										
										
											2012-04-16 22:11:25 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-14 22:29:58 -04:00
										 |  |  | class _LoadCompiledCompatibility(_HackedGetData, SourcelessFileLoader): | 
					
						
							| 
									
										
										
										
											2012-04-17 19:14:26 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     """Compatibility support for implementing load_compiled().""" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def load_compiled(name, pathname, file=None): | 
					
						
							| 
									
										
										
										
											2013-06-16 13:13:40 -04:00
										 |  |  |     """**DEPRECATED**""" | 
					
						
							| 
									
										
										
										
											2013-11-22 09:05:39 -07:00
										 |  |  |     loader = _LoadCompiledCompatibility(name, pathname, file) | 
					
						
							|  |  |  |     spec = util.spec_from_file_location(name, pathname, loader=loader) | 
					
						
							|  |  |  |     if name in sys.modules: | 
					
						
							| 
									
										
										
										
											2014-05-30 14:55:29 -04:00
										 |  |  |         module = _exec(spec, sys.modules[name]) | 
					
						
							| 
									
										
										
										
											2013-11-22 09:05:39 -07:00
										 |  |  |     else: | 
					
						
							| 
									
										
										
										
											2014-05-30 14:55:29 -04:00
										 |  |  |         module = _load(spec) | 
					
						
							| 
									
										
										
										
											2013-04-28 11:53:26 -04:00
										 |  |  |     # To allow reloading to potentially work, use a non-hacked loader which | 
					
						
							|  |  |  |     # won't rely on a now-closed file object. | 
					
						
							| 
									
										
										
										
											2013-06-14 22:29:58 -04:00
										 |  |  |     module.__loader__ = SourcelessFileLoader(name, pathname) | 
					
						
							| 
									
										
										
										
											2013-11-22 09:05:39 -07:00
										 |  |  |     module.__spec__.loader = module.__loader__ | 
					
						
							| 
									
										
										
										
											2013-04-28 11:53:26 -04:00
										 |  |  |     return module | 
					
						
							| 
									
										
										
										
											2012-04-17 19:14:26 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-15 22:28:28 -04:00
										 |  |  | def load_package(name, path): | 
					
						
							| 
									
										
										
										
											2013-06-16 13:13:40 -04:00
										 |  |  |     """**DEPRECATED**""" | 
					
						
							| 
									
										
										
										
											2012-04-15 22:28:28 -04:00
										 |  |  |     if os.path.isdir(path): | 
					
						
							| 
									
										
										
										
											2012-05-11 14:48:41 -04:00
										 |  |  |         extensions = (machinery.SOURCE_SUFFIXES[:] + | 
					
						
							|  |  |  |                       machinery.BYTECODE_SUFFIXES[:]) | 
					
						
							| 
									
										
										
										
											2012-04-15 22:28:28 -04:00
										 |  |  |         for extension in extensions: | 
					
						
							|  |  |  |             path = os.path.join(path, '__init__'+extension) | 
					
						
							|  |  |  |             if os.path.exists(path): | 
					
						
							|  |  |  |                 break | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             raise ValueError('{!r} is not a package'.format(path)) | 
					
						
							| 
									
										
										
										
											2013-11-22 09:05:39 -07:00
										 |  |  |     spec = util.spec_from_file_location(name, path, | 
					
						
							|  |  |  |                                         submodule_search_locations=[]) | 
					
						
							|  |  |  |     if name in sys.modules: | 
					
						
							| 
									
										
										
										
											2014-05-30 14:55:29 -04:00
										 |  |  |         return _exec(spec, sys.modules[name]) | 
					
						
							| 
									
										
										
										
											2013-11-22 09:05:39 -07:00
										 |  |  |     else: | 
					
						
							| 
									
										
										
										
											2014-05-30 14:55:29 -04:00
										 |  |  |         return _load(spec) | 
					
						
							| 
									
										
										
										
											2012-04-15 22:28:28 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-15 20:25:23 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | def load_module(name, file, filename, details): | 
					
						
							| 
									
										
										
										
											2012-06-15 19:39:06 -04:00
										 |  |  |     """**DEPRECATED**
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Load a module, given information returned by find_module(). | 
					
						
							| 
									
										
										
										
											2012-04-15 20:25:23 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     The module name must include the full package name, if any. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     suffix, mode, type_ = details | 
					
						
							| 
									
										
										
										
											2013-06-16 13:13:40 -04:00
										 |  |  |     if mode and (not mode.startswith(('r', 'U')) or '+' in mode): | 
					
						
							|  |  |  |         raise ValueError('invalid file open mode {!r}'.format(mode)) | 
					
						
							|  |  |  |     elif file is None and type_ in {PY_SOURCE, PY_COMPILED}: | 
					
						
							|  |  |  |         msg = 'file object required for import (type code {})'.format(type_) | 
					
						
							|  |  |  |         raise ValueError(msg) | 
					
						
							|  |  |  |     elif type_ == PY_SOURCE: | 
					
						
							|  |  |  |         return load_source(name, filename, file) | 
					
						
							|  |  |  |     elif type_ == PY_COMPILED: | 
					
						
							|  |  |  |         return load_compiled(name, filename, file) | 
					
						
							|  |  |  |     elif type_ == C_EXTENSION and load_dynamic is not None: | 
					
						
							|  |  |  |         if file is None: | 
					
						
							|  |  |  |             with open(filename, 'rb') as opened_file: | 
					
						
							|  |  |  |                 return load_dynamic(name, filename, opened_file) | 
					
						
							| 
									
										
										
										
											2012-05-11 14:48:41 -04:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2013-06-16 13:13:40 -04:00
										 |  |  |             return load_dynamic(name, filename, file) | 
					
						
							|  |  |  |     elif type_ == PKG_DIRECTORY: | 
					
						
							|  |  |  |         return load_package(name, filename) | 
					
						
							|  |  |  |     elif type_ == C_BUILTIN: | 
					
						
							|  |  |  |         return init_builtin(name) | 
					
						
							|  |  |  |     elif type_ == PY_FROZEN: | 
					
						
							|  |  |  |         return init_frozen(name) | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         msg =  "Don't know how to import {} (type code {})".format(name, type_) | 
					
						
							|  |  |  |         raise ImportError(msg, name=name) | 
					
						
							| 
									
										
										
										
											2012-04-21 21:09:46 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def find_module(name, path=None): | 
					
						
							| 
									
										
										
										
											2012-06-15 19:39:06 -04:00
										 |  |  |     """**DEPRECATED**
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Search for a module. | 
					
						
							| 
									
										
										
										
											2012-04-21 21:09:46 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     If path is omitted or None, search for a built-in, frozen or special | 
					
						
							|  |  |  |     module and continue search in sys.path. The module name cannot | 
					
						
							|  |  |  |     contain '.'; to search for a submodule of a package, pass the | 
					
						
							|  |  |  |     submodule name and the package's __path__. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     if not isinstance(name, str): | 
					
						
							|  |  |  |         raise TypeError("'name' must be a str, not {}".format(type(name))) | 
					
						
							|  |  |  |     elif not isinstance(path, (type(None), list)): | 
					
						
							|  |  |  |         # Backwards-compatibility | 
					
						
							|  |  |  |         raise RuntimeError("'list' must be None or a list, " | 
					
						
							|  |  |  |                            "not {}".format(type(name))) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if path is None: | 
					
						
							|  |  |  |         if is_builtin(name): | 
					
						
							|  |  |  |             return None, None, ('', '', C_BUILTIN) | 
					
						
							|  |  |  |         elif is_frozen(name): | 
					
						
							|  |  |  |             return None, None, ('', '', PY_FROZEN) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             path = sys.path | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for entry in path: | 
					
						
							|  |  |  |         package_directory = os.path.join(entry, name) | 
					
						
							| 
									
										
										
										
											2012-05-11 12:58:42 -04:00
										 |  |  |         for suffix in ['.py', machinery.BYTECODE_SUFFIXES[0]]: | 
					
						
							| 
									
										
										
										
											2012-04-21 21:09:46 -04:00
										 |  |  |             package_file_name = '__init__' + suffix | 
					
						
							|  |  |  |             file_path = os.path.join(package_directory, package_file_name) | 
					
						
							|  |  |  |             if os.path.isfile(file_path): | 
					
						
							|  |  |  |                 return None, package_directory, ('', '', PKG_DIRECTORY) | 
					
						
							| 
									
										
										
										
											2013-06-16 13:13:40 -04:00
										 |  |  |         for suffix, mode, type_ in get_suffixes(): | 
					
						
							|  |  |  |             file_name = name + suffix | 
					
						
							|  |  |  |             file_path = os.path.join(entry, file_name) | 
					
						
							|  |  |  |             if os.path.isfile(file_path): | 
					
						
							|  |  |  |                 break | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             continue | 
					
						
							|  |  |  |         break  # Break out of outer loop when breaking out of inner loop. | 
					
						
							| 
									
										
										
										
											2012-04-21 21:09:46 -04:00
										 |  |  |     else: | 
					
						
							| 
									
										
										
										
											2013-06-14 22:29:58 -04:00
										 |  |  |         raise ImportError(_ERR_MSG.format(name), name=name) | 
					
						
							| 
									
										
										
										
											2012-04-21 21:09:46 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     encoding = None | 
					
						
							| 
									
										
										
										
											2013-11-23 22:12:06 +02:00
										 |  |  |     if 'b' not in mode: | 
					
						
							| 
									
										
										
										
											2012-04-21 21:09:46 -04:00
										 |  |  |         with open(file_path, 'rb') as file: | 
					
						
							|  |  |  |             encoding = tokenize.detect_encoding(file.readline)[0] | 
					
						
							|  |  |  |     file = open(file_path, mode, encoding=encoding) | 
					
						
							|  |  |  |     return file, file_path, (suffix, mode, type_) | 
					
						
							| 
									
										
										
										
											2012-04-29 14:38:11 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def reload(module): | 
					
						
							| 
									
										
										
										
											2013-06-14 15:04:26 -04:00
										 |  |  |     """**DEPRECATED**
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Reload the module and return it. | 
					
						
							| 
									
										
										
										
											2012-04-29 14:38:11 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     The module must have been successfully imported before. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2013-06-14 15:04:26 -04:00
										 |  |  |     return importlib.reload(module) | 
					
						
							| 
									
										
										
										
											2015-05-23 22:24:10 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def init_builtin(name): | 
					
						
							|  |  |  |     """**DEPRECATED**
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Load and return a built-in module by name, or None is such module doesn't | 
					
						
							|  |  |  |     exist | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         return _builtin_from_name(name) | 
					
						
							|  |  |  |     except ImportError: | 
					
						
							|  |  |  |         return None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if create_dynamic: | 
					
						
							|  |  |  |     def load_dynamic(name, path, file=None): | 
					
						
							|  |  |  |         """**DEPRECATED**
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         Load an extension module. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         import importlib.machinery | 
					
						
							|  |  |  |         loader = importlib.machinery.ExtensionFileLoader(name, path) | 
					
						
							| 
									
										
										
										
											2015-09-05 21:05:05 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Issue #24748: Skip the sys.modules check in _load_module_shim; | 
					
						
							|  |  |  |         # always load new extension | 
					
						
							|  |  |  |         spec = importlib.machinery.ModuleSpec( | 
					
						
							|  |  |  |             name=name, loader=loader, origin=path) | 
					
						
							|  |  |  |         return _load(spec) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-23 22:24:10 +10:00
										 |  |  | else: | 
					
						
							|  |  |  |     load_dynamic = None |