Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 1 | :mod:`importlib` -- An implementation of :keyword:`import` |
| 2 | ========================================================== |
| 3 | |
| 4 | .. module:: importlib |
| 5 | :synopsis: An implementation of the import machinery. |
| 6 | |
| 7 | .. moduleauthor:: Brett Cannon <brett@python.org> |
| 8 | .. sectionauthor:: Brett Cannon <brett@python.org> |
| 9 | |
| 10 | .. versionadded:: 3.1 |
| 11 | |
| 12 | |
| 13 | Introduction |
| 14 | ------------ |
| 15 | |
| 16 | The purpose of the :mod:`importlib` package is two-fold. One is to provide an |
| 17 | implementation of the :keyword:`import` statement (and thus, by extension, the |
| 18 | :func:`__import__` function) in Python source code. This provides an |
Tarek Ziadé | 434caaa | 2009-05-14 12:48:09 +0000 | [diff] [blame] | 19 | implementation of :keyword:`import` which is portable to any Python |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 20 | interpreter. This also provides a reference implementation which is easier to |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 21 | comprehend than one implemented in a programming language other than Python. |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 22 | |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 23 | Two, the components to implement :keyword:`import` are exposed in this |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 24 | package, making it easier for users to create their own custom objects (known |
Brett Cannon | debb98d | 2009-02-16 04:18:01 +0000 | [diff] [blame] | 25 | generically as an :term:`importer`) to participate in the import process. |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 26 | Details on custom importers can be found in :pep:`302`. |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 27 | |
| 28 | .. seealso:: |
| 29 | |
| 30 | :ref:`import` |
| 31 | The language reference for the :keyword:`import` statement. |
| 32 | |
| 33 | `Packages specification <http://www.python.org/doc/essays/packages.html>`__ |
| 34 | Original specification of packages. Some semantics have changed since |
Georg Brandl | 375aec2 | 2011-01-15 17:03:02 +0000 | [diff] [blame] | 35 | the writing of this document (e.g. redirecting based on ``None`` |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 36 | in :data:`sys.modules`). |
| 37 | |
| 38 | The :func:`.__import__` function |
Brett Cannon | 0e13c94 | 2010-06-29 18:26:11 +0000 | [diff] [blame] | 39 | The :keyword:`import` statement is syntactic sugar for this function. |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 40 | |
| 41 | :pep:`235` |
| 42 | Import on Case-Insensitive Platforms |
| 43 | |
| 44 | :pep:`263` |
| 45 | Defining Python Source Code Encodings |
| 46 | |
| 47 | :pep:`302` |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 48 | New Import Hooks |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 49 | |
| 50 | :pep:`328` |
| 51 | Imports: Multi-Line and Absolute/Relative |
| 52 | |
| 53 | :pep:`366` |
| 54 | Main module explicit relative imports |
| 55 | |
Brett Cannon | 8917d5e | 2010-01-13 19:21:00 +0000 | [diff] [blame] | 56 | :pep:`3120` |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 57 | Using UTF-8 as the Default Source Encoding |
| 58 | |
Brett Cannon | 30b7a90 | 2010-06-27 21:49:22 +0000 | [diff] [blame] | 59 | :pep:`3147` |
| 60 | PYC Repository Directories |
| 61 | |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 62 | |
| 63 | Functions |
| 64 | --------- |
| 65 | |
Brett Cannon | cb4996a | 2012-08-06 16:34:44 -0400 | [diff] [blame] | 66 | .. function:: __import__(name, globals=None, locals=None, fromlist=(), level=0) |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 67 | |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 68 | An implementation of the built-in :func:`__import__` function. |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 69 | |
| 70 | .. function:: import_module(name, package=None) |
| 71 | |
Brett Cannon | 33418c8 | 2009-01-22 18:37:20 +0000 | [diff] [blame] | 72 | Import a module. The *name* argument specifies what module to |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 73 | import in absolute or relative terms |
| 74 | (e.g. either ``pkg.mod`` or ``..mod``). If the name is |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 75 | specified in relative terms, then the *package* argument must be set to |
| 76 | the name of the package which is to act as the anchor for resolving the |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 77 | package name (e.g. ``import_module('..mod', 'pkg.subpkg')`` will import |
Brett Cannon | 2c318a1 | 2009-02-07 01:15:27 +0000 | [diff] [blame] | 78 | ``pkg.mod``). |
Brett Cannon | 78246b6 | 2009-01-25 04:56:30 +0000 | [diff] [blame] | 79 | |
Brett Cannon | 2c318a1 | 2009-02-07 01:15:27 +0000 | [diff] [blame] | 80 | The :func:`import_module` function acts as a simplifying wrapper around |
Brett Cannon | 9f4cb1c | 2009-04-01 23:26:47 +0000 | [diff] [blame] | 81 | :func:`importlib.__import__`. This means all semantics of the function are |
| 82 | derived from :func:`importlib.__import__`, including requiring the package |
| 83 | from which an import is occurring to have been previously imported |
| 84 | (i.e., *package* must already be imported). The most important difference |
| 85 | is that :func:`import_module` returns the most nested package or module |
| 86 | that was imported (e.g. ``pkg.mod``), while :func:`__import__` returns the |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 87 | top-level package or module (e.g. ``pkg``). |
| 88 | |
Brett Cannon | ee78a2b | 2012-05-12 17:43:17 -0400 | [diff] [blame] | 89 | .. function:: find_loader(name, path=None) |
| 90 | |
| 91 | Find the loader for a module, optionally within the specified *path*. If the |
| 92 | module is in :attr:`sys.modules`, then ``sys.modules[name].__loader__`` is |
Brett Cannon | 3279923 | 2013-03-13 11:09:08 -0700 | [diff] [blame] | 93 | returned (unless the loader would be ``None`` or is not set, in which case |
Brett Cannon | ee78a2b | 2012-05-12 17:43:17 -0400 | [diff] [blame] | 94 | :exc:`ValueError` is raised). Otherwise a search using :attr:`sys.meta_path` |
| 95 | is done. ``None`` is returned if no loader is found. |
| 96 | |
Brett Cannon | 56b4ca7 | 2012-11-17 09:30:55 -0500 | [diff] [blame] | 97 | A dotted name does not have its parent's implicitly imported as that requires |
| 98 | loading them and that may not be desired. To properly import a submodule you |
| 99 | will need to import all parent packages of the submodule and use the correct |
| 100 | argument to *path*. |
Brett Cannon | ee78a2b | 2012-05-12 17:43:17 -0400 | [diff] [blame] | 101 | |
Brett Cannon | 3279923 | 2013-03-13 11:09:08 -0700 | [diff] [blame] | 102 | .. versionadded:: 3.3 |
| 103 | |
| 104 | .. versionchanged:: 3.4 |
| 105 | If ``__loader__`` is not set, raise :exc:`ValueError`, just like when the |
| 106 | attribute is set to ``None``. |
| 107 | |
Antoine Pitrou | c541f8e | 2012-02-20 01:48:16 +0100 | [diff] [blame] | 108 | .. function:: invalidate_caches() |
| 109 | |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 110 | Invalidate the internal caches of finders stored at |
| 111 | :data:`sys.meta_path`. If a finder implements ``invalidate_caches()`` then it |
Brett Cannon | 4067aa2 | 2013-04-27 23:20:32 -0400 | [diff] [blame] | 112 | will be called to perform the invalidation. This function should be called |
| 113 | if any modules are created/installed while your program is running to |
| 114 | guarantee all finders will notice the new module's existence. |
Antoine Pitrou | c541f8e | 2012-02-20 01:48:16 +0100 | [diff] [blame] | 115 | |
| 116 | .. versionadded:: 3.3 |
| 117 | |
Brett Cannon | 3fe35e6 | 2013-06-14 15:04:26 -0400 | [diff] [blame] | 118 | .. function:: reload(module) |
| 119 | |
| 120 | Reload a previously imported *module*. The argument must be a module object, |
| 121 | so it must have been successfully imported before. This is useful if you |
| 122 | have edited the module source file using an external editor and want to try |
| 123 | out the new version without leaving the Python interpreter. The return value |
| 124 | is the module object (the same as the *module* argument). |
| 125 | |
| 126 | When :func:`.reload` is executed: |
| 127 | |
| 128 | * Python modules' code is recompiled and the module-level code re-executed, |
| 129 | defining a new set of objects which are bound to names in the module's |
| 130 | dictionary by reusing the :term:`loader` which originally loaded the |
| 131 | module. The ``init`` function of extension modules is not called a second |
| 132 | time. |
| 133 | |
| 134 | * As with all other objects in Python the old objects are only reclaimed |
| 135 | after their reference counts drop to zero. |
| 136 | |
| 137 | * The names in the module namespace are updated to point to any new or |
| 138 | changed objects. |
| 139 | |
| 140 | * Other references to the old objects (such as names external to the module) are |
| 141 | not rebound to refer to the new objects and must be updated in each namespace |
| 142 | where they occur if that is desired. |
| 143 | |
| 144 | There are a number of other caveats: |
| 145 | |
| 146 | If a module is syntactically correct but its initialization fails, the first |
| 147 | :keyword:`import` statement for it does not bind its name locally, but does |
| 148 | store a (partially initialized) module object in ``sys.modules``. To reload |
| 149 | the module you must first :keyword:`import` it again (this will bind the name |
| 150 | to the partially initialized module object) before you can :func:`reload` it. |
| 151 | |
| 152 | When a module is reloaded, its dictionary (containing the module's global |
| 153 | variables) is retained. Redefinitions of names will override the old |
| 154 | definitions, so this is generally not a problem. If the new version of a |
| 155 | module does not define a name that was defined by the old version, the old |
| 156 | definition remains. This feature can be used to the module's advantage if it |
| 157 | maintains a global table or cache of objects --- with a :keyword:`try` |
| 158 | statement it can test for the table's presence and skip its initialization if |
| 159 | desired:: |
| 160 | |
| 161 | try: |
| 162 | cache |
| 163 | except NameError: |
| 164 | cache = {} |
| 165 | |
| 166 | It is legal though generally not very useful to reload built-in or |
| 167 | dynamically loaded modules (this is not true for e.g. :mod:`sys`, |
Serhiy Storchaka | 98b28fd | 2013-10-13 23:12:09 +0300 | [diff] [blame] | 168 | :mod:`__main__`, :mod:`builtins` and other key modules where reloading is |
Brett Cannon | 3fe35e6 | 2013-06-14 15:04:26 -0400 | [diff] [blame] | 169 | frowned upon). In many cases, however, extension modules are not designed to |
| 170 | be initialized more than once, and may fail in arbitrary ways when reloaded. |
| 171 | |
| 172 | If a module imports objects from another module using :keyword:`from` ... |
| 173 | :keyword:`import` ..., calling :func:`reload` for the other module does not |
| 174 | redefine the objects imported from it --- one way around this is to |
| 175 | re-execute the :keyword:`from` statement, another is to use :keyword:`import` |
| 176 | and qualified names (*module.name*) instead. |
| 177 | |
| 178 | If a module instantiates instances of a class, reloading the module that |
| 179 | defines the class does not affect the method definitions of the instances --- |
| 180 | they continue to use the old class definition. The same is true for derived |
| 181 | classes. |
| 182 | |
| 183 | .. versionadded:: 3.4 |
| 184 | |
Brett Cannon | 78246b6 | 2009-01-25 04:56:30 +0000 | [diff] [blame] | 185 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 186 | :mod:`importlib.abc` -- Abstract base classes related to import |
| 187 | --------------------------------------------------------------- |
| 188 | |
| 189 | .. module:: importlib.abc |
| 190 | :synopsis: Abstract base classes related to import |
| 191 | |
| 192 | The :mod:`importlib.abc` module contains all of the core abstract base classes |
| 193 | used by :keyword:`import`. Some subclasses of the core abstract base classes |
| 194 | are also provided to help in implementing the core ABCs. |
| 195 | |
Andrew Svetlov | a865654 | 2012-08-13 22:19:01 +0300 | [diff] [blame] | 196 | ABC hierarchy:: |
| 197 | |
| 198 | object |
Brett Cannon | 1b79918 | 2012-08-17 14:08:24 -0400 | [diff] [blame] | 199 | +-- Finder (deprecated) |
Andrew Svetlov | a865654 | 2012-08-13 22:19:01 +0300 | [diff] [blame] | 200 | | +-- MetaPathFinder |
| 201 | | +-- PathEntryFinder |
| 202 | +-- Loader |
| 203 | +-- ResourceLoader --------+ |
| 204 | +-- InspectLoader | |
| 205 | +-- ExecutionLoader --+ |
| 206 | +-- FileLoader |
| 207 | +-- SourceLoader |
Andrew Svetlov | a865654 | 2012-08-13 22:19:01 +0300 | [diff] [blame] | 208 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 209 | |
| 210 | .. class:: Finder |
| 211 | |
Brett Cannon | 1b79918 | 2012-08-17 14:08:24 -0400 | [diff] [blame] | 212 | An abstract base class representing a :term:`finder`. |
| 213 | |
| 214 | .. deprecated:: 3.3 |
| 215 | Use :class:`MetaPathFinder` or :class:`PathEntryFinder` instead. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 216 | |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 217 | .. method:: find_module(fullname, path=None) |
Brett Cannon | b46a179 | 2012-02-27 18:15:42 -0500 | [diff] [blame] | 218 | |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 219 | An abstact method for finding a :term:`loader` for the specified |
| 220 | module. Originally specified in :pep:`302`, this method was meant |
| 221 | for use in :data:`sys.meta_path` and in the path-based import subsystem. |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 222 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 223 | .. versionchanged:: 3.4 |
| 224 | Returns ``None`` when called instead of raising |
| 225 | :exc:`NotImplementedError`. |
| 226 | |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 227 | |
Brett Cannon | 077ef45 | 2012-08-02 17:50:06 -0400 | [diff] [blame] | 228 | .. class:: MetaPathFinder |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 229 | |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 230 | An abstract base class representing a :term:`meta path finder`. For |
| 231 | compatibility, this is a subclass of :class:`Finder`. |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 232 | |
| 233 | .. versionadded:: 3.3 |
| 234 | |
| 235 | .. method:: find_module(fullname, path) |
| 236 | |
| 237 | An abstract method for finding a :term:`loader` for the specified |
| 238 | module. If this is a top-level import, *path* will be ``None``. |
Ezio Melotti | 1f67e80 | 2012-10-21 07:24:13 +0300 | [diff] [blame] | 239 | Otherwise, this is a search for a subpackage or module and *path* |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 240 | will be the value of :attr:`__path__` from the parent |
| 241 | package. If a loader cannot be found, ``None`` is returned. |
| 242 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 243 | .. versionchanged:: 3.4 |
| 244 | Returns ``None`` when called instead of raising |
| 245 | :exc:`NotImplementedError`. |
| 246 | |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 247 | .. method:: invalidate_caches() |
| 248 | |
| 249 | An optional method which, when called, should invalidate any internal |
Brett Cannon | a6e8581 | 2012-08-11 19:41:27 -0400 | [diff] [blame] | 250 | cache used by the finder. Used by :func:`importlib.invalidate_caches` |
| 251 | when invalidating the caches of all finders on :data:`sys.meta_path`. |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 252 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 253 | .. versionchanged:: 3.4 |
| 254 | Returns ``None`` when called instead of ``NotImplemented``. |
| 255 | |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 256 | |
Brett Cannon | 077ef45 | 2012-08-02 17:50:06 -0400 | [diff] [blame] | 257 | .. class:: PathEntryFinder |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 258 | |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 259 | An abstract base class representing a :term:`path entry finder`. Though |
| 260 | it bears some similarities to :class:`MetaPathFinder`, ``PathEntryFinder`` |
| 261 | is meant for use only within the path-based import subsystem provided |
| 262 | by :class:`PathFinder`. This ABC is a subclass of :class:`Finder` for |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 263 | compatibility reasons only. |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 264 | |
| 265 | .. versionadded:: 3.3 |
| 266 | |
Brett Cannon | 4067aa2 | 2013-04-27 23:20:32 -0400 | [diff] [blame] | 267 | .. method:: find_loader(fullname) |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 268 | |
| 269 | An abstract method for finding a :term:`loader` for the specified |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 270 | module. Returns a 2-tuple of ``(loader, portion)`` where ``portion`` |
| 271 | is a sequence of file system locations contributing to part of a namespace |
| 272 | package. The loader may be ``None`` while specifying ``portion`` to |
| 273 | signify the contribution of the file system locations to a namespace |
| 274 | package. An empty list can be used for ``portion`` to signify the loader |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 275 | is not part of a namespace package. If ``loader`` is ``None`` and |
| 276 | ``portion`` is the empty list then no loader or location for a namespace |
| 277 | package were found (i.e. failure to find anything for the module). |
| 278 | |
| 279 | .. versionchanged:: 3.4 |
| 280 | Returns ``(None, [])`` instead of raising :exc:`NotImplementedError`. |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 281 | |
Brett Cannon | 4067aa2 | 2013-04-27 23:20:32 -0400 | [diff] [blame] | 282 | .. method:: find_module(fullname) |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 283 | |
| 284 | A concrete implementation of :meth:`Finder.find_module` which is |
| 285 | equivalent to ``self.find_loader(fullname)[0]``. |
| 286 | |
| 287 | .. method:: invalidate_caches() |
| 288 | |
| 289 | An optional method which, when called, should invalidate any internal |
Brett Cannon | a6e8581 | 2012-08-11 19:41:27 -0400 | [diff] [blame] | 290 | cache used by the finder. Used by :meth:`PathFinder.invalidate_caches` |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 291 | when invalidating the caches of all cached finders. |
Brett Cannon | b46a179 | 2012-02-27 18:15:42 -0500 | [diff] [blame] | 292 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 293 | |
| 294 | .. class:: Loader |
| 295 | |
| 296 | An abstract base class for a :term:`loader`. |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 297 | See :pep:`302` for the exact definition for a loader. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 298 | |
Brett Cannon | 9c751b7 | 2009-03-09 16:28:16 +0000 | [diff] [blame] | 299 | .. method:: load_module(fullname) |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 300 | |
| 301 | An abstract method for loading a module. If the module cannot be |
| 302 | loaded, :exc:`ImportError` is raised, otherwise the loaded module is |
| 303 | returned. |
| 304 | |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 305 | If the requested module already exists in :data:`sys.modules`, that |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 306 | module should be used and reloaded. |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 307 | Otherwise the loader should create a new module and insert it into |
| 308 | :data:`sys.modules` before any loading begins, to prevent recursion |
| 309 | from the import. If the loader inserted a module and the load fails, it |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 310 | must be removed by the loader from :data:`sys.modules`; modules already |
| 311 | in :data:`sys.modules` before the loader began execution should be left |
Brett Cannon | 1773811 | 2013-05-31 18:00:56 -0400 | [diff] [blame] | 312 | alone (see :func:`importlib.util.module_to_load`). |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 313 | |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 314 | The loader should set several attributes on the module. |
| 315 | (Note that some of these attributes can change when a module is |
Brett Cannon | 0dbb4c7 | 2013-05-31 18:56:47 -0400 | [diff] [blame] | 316 | reloaded; see :meth:`init_module_attrs`): |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 317 | |
| 318 | - :attr:`__name__` |
| 319 | The name of the module. |
| 320 | |
| 321 | - :attr:`__file__` |
| 322 | The path to where the module data is stored (not set for built-in |
| 323 | modules). |
| 324 | |
Brett Cannon | 2cefb3c | 2013-05-25 11:26:11 -0400 | [diff] [blame] | 325 | - :attr:`__cached__` |
| 326 | The path to where a compiled version of the module is/should be |
| 327 | stored (not set when the attribute would be inappropriate). |
| 328 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 329 | - :attr:`__path__` |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 330 | A list of strings specifying the search path within a |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 331 | package. This attribute is not set on modules. |
| 332 | |
| 333 | - :attr:`__package__` |
| 334 | The parent package for the module/package. If the module is |
| 335 | top-level then it has a value of the empty string. The |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 336 | :func:`importlib.util.module_for_loader` decorator can handle the |
| 337 | details for :attr:`__package__`. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 338 | |
| 339 | - :attr:`__loader__` |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 340 | The loader used to load the module. The |
| 341 | :func:`importlib.util.module_for_loader` decorator can handle the |
| 342 | details for :attr:`__package__`. |
| 343 | |
| 344 | .. versionchanged:: 3.4 |
| 345 | Raise :exc:`ImportError` when called instead of |
| 346 | :exc:`NotImplementedError`. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 347 | |
Barry Warsaw | d7d2194 | 2012-07-29 16:36:17 -0400 | [diff] [blame] | 348 | .. method:: module_repr(module) |
| 349 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 350 | An optional method which when implemented calculates and returns the |
| 351 | given module's repr, as a string. The module type's default repr() will |
| 352 | use the result of this method as appropriate. |
Barry Warsaw | d7d2194 | 2012-07-29 16:36:17 -0400 | [diff] [blame] | 353 | |
Georg Brandl | 526575d | 2013-04-11 16:10:13 +0200 | [diff] [blame] | 354 | .. versionadded:: 3.3 |
Barry Warsaw | d7d2194 | 2012-07-29 16:36:17 -0400 | [diff] [blame] | 355 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 356 | .. versionchanged:: 3.4 |
Georg Brandl | 526575d | 2013-04-11 16:10:13 +0200 | [diff] [blame] | 357 | Made optional instead of an abstractmethod. |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 358 | |
Brett Cannon | 0dbb4c7 | 2013-05-31 18:56:47 -0400 | [diff] [blame] | 359 | .. method:: init_module_attrs(module) |
| 360 | |
| 361 | Set the :attr:`__loader__` attribute on the module. |
| 362 | |
| 363 | Subclasses overriding this method should set whatever appropriate |
| 364 | attributes it can, getting the module's name from :attr:`__name__` when |
| 365 | needed. All values should also be overridden so that reloading works as |
| 366 | expected. |
| 367 | |
| 368 | .. versionadded:: 3.4 |
| 369 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 370 | |
| 371 | .. class:: ResourceLoader |
| 372 | |
| 373 | An abstract base class for a :term:`loader` which implements the optional |
| 374 | :pep:`302` protocol for loading arbitrary resources from the storage |
| 375 | back-end. |
| 376 | |
Brett Cannon | 9c751b7 | 2009-03-09 16:28:16 +0000 | [diff] [blame] | 377 | .. method:: get_data(path) |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 378 | |
| 379 | An abstract method to return the bytes for the data located at *path*. |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 380 | Loaders that have a file-like storage back-end |
Brett Cannon | 16248a4 | 2009-04-01 20:47:14 +0000 | [diff] [blame] | 381 | that allows storing arbitrary data |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 382 | can implement this abstract method to give direct access |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 383 | to the data stored. :exc:`IOError` is to be raised if the *path* cannot |
| 384 | be found. The *path* is expected to be constructed using a module's |
Brett Cannon | 16248a4 | 2009-04-01 20:47:14 +0000 | [diff] [blame] | 385 | :attr:`__file__` attribute or an item from a package's :attr:`__path__`. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 386 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 387 | .. versionchanged:: 3.4 |
| 388 | Raises :exc:`IOError` instead of :exc:`NotImplementedError`. |
| 389 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 390 | |
| 391 | .. class:: InspectLoader |
| 392 | |
| 393 | An abstract base class for a :term:`loader` which implements the optional |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 394 | :pep:`302` protocol for loaders that inspect modules. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 395 | |
Brett Cannon | a113ac5 | 2009-03-15 01:41:33 +0000 | [diff] [blame] | 396 | .. method:: get_code(fullname) |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 397 | |
Brett Cannon | 3b62ca8 | 2013-05-27 21:11:04 -0400 | [diff] [blame] | 398 | Return the code object for a module. |
| 399 | ``None`` should be returned if the module does not have a code object |
Brett Cannon | a113ac5 | 2009-03-15 01:41:33 +0000 | [diff] [blame] | 400 | (e.g. built-in module). :exc:`ImportError` is raised if loader cannot |
| 401 | find the requested module. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 402 | |
Brett Cannon | 3b62ca8 | 2013-05-27 21:11:04 -0400 | [diff] [blame] | 403 | .. note:: |
| 404 | While the method has a default implementation, it is suggested that |
| 405 | it be overridden if possible for performance. |
| 406 | |
R David Murray | 1b00f25 | 2012-08-15 10:43:58 -0400 | [diff] [blame] | 407 | .. index:: |
| 408 | single: universal newlines; importlib.abc.InspectLoader.get_source method |
| 409 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 410 | .. versionchanged:: 3.4 |
Brett Cannon | 3b62ca8 | 2013-05-27 21:11:04 -0400 | [diff] [blame] | 411 | No longer abstract and a concrete implementation is provided. |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 412 | |
Brett Cannon | 9c751b7 | 2009-03-09 16:28:16 +0000 | [diff] [blame] | 413 | .. method:: get_source(fullname) |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 414 | |
| 415 | An abstract method to return the source of a module. It is returned as |
R David Murray | 1b00f25 | 2012-08-15 10:43:58 -0400 | [diff] [blame] | 416 | a text string using :term:`universal newlines`, translating all |
R David Murray | ee0a945 | 2012-08-15 11:05:36 -0400 | [diff] [blame] | 417 | recognized line separators into ``'\n'`` characters. Returns ``None`` |
| 418 | if no source is available (e.g. a built-in module). Raises |
| 419 | :exc:`ImportError` if the loader cannot find the module specified. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 420 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 421 | .. versionchanged:: 3.4 |
| 422 | Raises :exc:`ImportError` instead of :exc:`NotImplementedError`. |
| 423 | |
Brett Cannon | a113ac5 | 2009-03-15 01:41:33 +0000 | [diff] [blame] | 424 | .. method:: is_package(fullname) |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 425 | |
Brett Cannon | a113ac5 | 2009-03-15 01:41:33 +0000 | [diff] [blame] | 426 | An abstract method to return a true value if the module is a package, a |
| 427 | false value otherwise. :exc:`ImportError` is raised if the |
| 428 | :term:`loader` cannot find the module. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 429 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 430 | .. versionchanged:: 3.4 |
| 431 | Raises :exc:`ImportError` instead of :exc:`NotImplementedError`. |
| 432 | |
Brett Cannon | 9ffe85e | 2013-05-26 16:45:10 -0400 | [diff] [blame] | 433 | .. method:: source_to_code(data, path='<string>') |
| 434 | |
| 435 | Create a code object from Python source. |
| 436 | |
| 437 | The *data* argument can be whatever the :func:`compile` function |
| 438 | supports (i.e. string or bytes). The *path* argument should be |
| 439 | the "path" to where the source code originated from, which can be an |
| 440 | abstract concept (e.g. location in a zip file). |
| 441 | |
| 442 | .. versionadded:: 3.4 |
| 443 | |
Brett Cannon | 0dbb4c7 | 2013-05-31 18:56:47 -0400 | [diff] [blame] | 444 | .. method:: init_module_attrs(module) |
| 445 | |
| 446 | Set the :attr:`__package__` attribute and :attr:`__path__` attribute to |
| 447 | the empty list if appropriate along with what |
| 448 | :meth:`importlib.abc.Loader.init_module_attrs` sets. |
| 449 | |
| 450 | .. versionadded:: 3.4 |
| 451 | |
| 452 | .. method:: load_module(fullname) |
| 453 | |
| 454 | Implementation of :meth:`Loader.load_module`. |
| 455 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 456 | |
Brett Cannon | 6919427 | 2009-07-20 04:23:48 +0000 | [diff] [blame] | 457 | .. class:: ExecutionLoader |
| 458 | |
| 459 | An abstract base class which inherits from :class:`InspectLoader` that, |
Brett Cannon | 2346029 | 2009-07-20 22:59:00 +0000 | [diff] [blame] | 460 | when implemented, helps a module to be executed as a script. The ABC |
Brett Cannon | 6919427 | 2009-07-20 04:23:48 +0000 | [diff] [blame] | 461 | represents an optional :pep:`302` protocol. |
| 462 | |
| 463 | .. method:: get_filename(fullname) |
| 464 | |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 465 | An abstract method that is to return the value of :attr:`__file__` for |
Brett Cannon | 6919427 | 2009-07-20 04:23:48 +0000 | [diff] [blame] | 466 | the specified module. If no path is available, :exc:`ImportError` is |
| 467 | raised. |
| 468 | |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 469 | If source code is available, then the method should return the path to |
| 470 | the source file, regardless of whether a bytecode was used to load the |
| 471 | module. |
| 472 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 473 | .. versionchanged:: 3.4 |
| 474 | Raises :exc:`ImportError` instead of :exc:`NotImplementedError`. |
| 475 | |
Brett Cannon | 0dbb4c7 | 2013-05-31 18:56:47 -0400 | [diff] [blame] | 476 | .. method:: init_module_attrs(module) |
| 477 | |
| 478 | Set :attr:`__file__` and if initializing a package then set |
| 479 | :attr:`__path__` to ``[os.path.dirname(__file__)]`` along with |
| 480 | all attributes set by |
| 481 | :meth:`importlib.abc.InspectLoader.init_module_attrs`. |
| 482 | |
| 483 | .. versionadded:: 3.4 |
| 484 | |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 485 | |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 486 | .. class:: FileLoader(fullname, path) |
| 487 | |
| 488 | An abstract base class which inherits from :class:`ResourceLoader` and |
Andrew Svetlov | a60de4f | 2013-02-17 16:55:58 +0200 | [diff] [blame] | 489 | :class:`ExecutionLoader`, providing concrete implementations of |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 490 | :meth:`ResourceLoader.get_data` and :meth:`ExecutionLoader.get_filename`. |
| 491 | |
| 492 | The *fullname* argument is a fully resolved name of the module the loader is |
| 493 | to handle. The *path* argument is the path to the file for the module. |
| 494 | |
| 495 | .. versionadded:: 3.3 |
| 496 | |
| 497 | .. attribute:: name |
| 498 | |
| 499 | The name of the module the loader can handle. |
| 500 | |
| 501 | .. attribute:: path |
| 502 | |
| 503 | Path to the file of the module. |
| 504 | |
Barry Warsaw | d7d2194 | 2012-07-29 16:36:17 -0400 | [diff] [blame] | 505 | .. method:: load_module(fullname) |
Brett Cannon | c049952 | 2012-05-11 14:48:41 -0400 | [diff] [blame] | 506 | |
Barry Warsaw | d7d2194 | 2012-07-29 16:36:17 -0400 | [diff] [blame] | 507 | Calls super's ``load_module()``. |
Brett Cannon | c049952 | 2012-05-11 14:48:41 -0400 | [diff] [blame] | 508 | |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 509 | .. method:: get_filename(fullname) |
| 510 | |
Barry Warsaw | d7d2194 | 2012-07-29 16:36:17 -0400 | [diff] [blame] | 511 | Returns :attr:`path`. |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 512 | |
| 513 | .. method:: get_data(path) |
| 514 | |
Brett Cannon | 3b62ca8 | 2013-05-27 21:11:04 -0400 | [diff] [blame] | 515 | Reads *path* as a binary file and returns the bytes from it. |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 516 | |
| 517 | |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 518 | .. class:: SourceLoader |
| 519 | |
| 520 | An abstract base class for implementing source (and optionally bytecode) |
| 521 | file loading. The class inherits from both :class:`ResourceLoader` and |
| 522 | :class:`ExecutionLoader`, requiring the implementation of: |
| 523 | |
| 524 | * :meth:`ResourceLoader.get_data` |
| 525 | * :meth:`ExecutionLoader.get_filename` |
Brett Cannon | 6dfbff3 | 2010-07-21 09:48:31 +0000 | [diff] [blame] | 526 | Should only return the path to the source file; sourceless |
Brett Cannon | a81d527 | 2013-06-16 19:17:12 -0400 | [diff] [blame] | 527 | loading is not supported. |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 528 | |
| 529 | The abstract methods defined by this class are to add optional bytecode |
Brett Cannon | 5650e4f | 2012-11-18 10:03:31 -0500 | [diff] [blame] | 530 | file support. Not implementing these optional methods (or causing them to |
| 531 | raise :exc:`NotImplementedError`) causes the loader to |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 532 | only work with source code. Implementing the methods allows the loader to |
| 533 | work with source *and* bytecode files; it does not allow for *sourceless* |
| 534 | loading where only bytecode is provided. Bytecode files are an |
| 535 | optimization to speed up loading by removing the parsing step of Python's |
| 536 | compiler, and so no bytecode-specific API is exposed. |
| 537 | |
Brett Cannon | 773468f | 2012-08-02 17:35:34 -0400 | [diff] [blame] | 538 | .. method:: path_stats(path) |
Antoine Pitrou | 5136ac0 | 2012-01-13 18:52:16 +0100 | [diff] [blame] | 539 | |
| 540 | Optional abstract method which returns a :class:`dict` containing |
| 541 | metadata about the specifed path. Supported dictionary keys are: |
| 542 | |
| 543 | - ``'mtime'`` (mandatory): an integer or floating-point number |
| 544 | representing the modification time of the source code; |
| 545 | - ``'size'`` (optional): the size in bytes of the source code. |
| 546 | |
| 547 | Any other keys in the dictionary are ignored, to allow for future |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 548 | extensions. If the path cannot be handled, :exc:`IOError` is raised. |
Antoine Pitrou | 5136ac0 | 2012-01-13 18:52:16 +0100 | [diff] [blame] | 549 | |
| 550 | .. versionadded:: 3.3 |
| 551 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 552 | .. versionchanged:: 3.4 |
| 553 | Raise :exc:`IOError` instead of :exc:`NotImplementedError`. |
| 554 | |
Brett Cannon | 773468f | 2012-08-02 17:35:34 -0400 | [diff] [blame] | 555 | .. method:: path_mtime(path) |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 556 | |
| 557 | Optional abstract method which returns the modification time for the |
| 558 | specified path. |
| 559 | |
Antoine Pitrou | 5136ac0 | 2012-01-13 18:52:16 +0100 | [diff] [blame] | 560 | .. deprecated:: 3.3 |
| 561 | This method is deprecated in favour of :meth:`path_stats`. You don't |
| 562 | have to implement it, but it is still available for compatibility |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 563 | purposes. Raise :exc:`IOError` if the path cannot be handled. |
| 564 | |
| 565 | .. versionchanged:: 3.4 |
| 566 | Raise :exc:`IOError` instead of :exc:`NotImplementedError`. |
Antoine Pitrou | 5136ac0 | 2012-01-13 18:52:16 +0100 | [diff] [blame] | 567 | |
Brett Cannon | 773468f | 2012-08-02 17:35:34 -0400 | [diff] [blame] | 568 | .. method:: set_data(path, data) |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 569 | |
| 570 | Optional abstract method which writes the specified bytes to a file |
Brett Cannon | 61b1425 | 2010-07-03 21:48:25 +0000 | [diff] [blame] | 571 | path. Any intermediate directories which do not exist are to be created |
| 572 | automatically. |
| 573 | |
| 574 | When writing to the path fails because the path is read-only |
Brett Cannon | 2cefb3c | 2013-05-25 11:26:11 -0400 | [diff] [blame] | 575 | (:attr:`errno.EACCES`/:exc:`PermissionError`), do not propagate the |
| 576 | exception. |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 577 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 578 | .. versionchanged:: 3.4 |
| 579 | No longer raises :exc:`NotImplementedError` when called. |
| 580 | |
Brett Cannon | 773468f | 2012-08-02 17:35:34 -0400 | [diff] [blame] | 581 | .. method:: get_code(fullname) |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 582 | |
| 583 | Concrete implementation of :meth:`InspectLoader.get_code`. |
| 584 | |
Brett Cannon | 773468f | 2012-08-02 17:35:34 -0400 | [diff] [blame] | 585 | .. method:: load_module(fullname) |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 586 | |
| 587 | Concrete implementation of :meth:`Loader.load_module`. |
| 588 | |
Brett Cannon | 773468f | 2012-08-02 17:35:34 -0400 | [diff] [blame] | 589 | .. method:: get_source(fullname) |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 590 | |
| 591 | Concrete implementation of :meth:`InspectLoader.get_source`. |
| 592 | |
Brett Cannon | 773468f | 2012-08-02 17:35:34 -0400 | [diff] [blame] | 593 | .. method:: is_package(fullname) |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 594 | |
| 595 | Concrete implementation of :meth:`InspectLoader.is_package`. A module |
Brett Cannon | ea0b823 | 2012-06-15 20:00:53 -0400 | [diff] [blame] | 596 | is determined to be a package if its file path (as provided by |
| 597 | :meth:`ExecutionLoader.get_filename`) is a file named |
| 598 | ``__init__`` when the file extension is removed **and** the module name |
| 599 | itself does not end in ``__init__``. |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 600 | |
Brett Cannon | 0dbb4c7 | 2013-05-31 18:56:47 -0400 | [diff] [blame] | 601 | .. method:: init_module_attr(module) |
| 602 | |
| 603 | Set :attr:`__cached__` using :func:`imp.cache_from_source`. Other |
| 604 | attributes set by |
| 605 | :meth:`importlib.abc.ExecutionLoader.init_module_attrs`. |
| 606 | |
| 607 | .. versionadded:: 3.4 |
| 608 | |
Brett Cannon | 6919427 | 2009-07-20 04:23:48 +0000 | [diff] [blame] | 609 | |
Brett Cannon | 78246b6 | 2009-01-25 04:56:30 +0000 | [diff] [blame] | 610 | :mod:`importlib.machinery` -- Importers and path hooks |
| 611 | ------------------------------------------------------ |
| 612 | |
| 613 | .. module:: importlib.machinery |
| 614 | :synopsis: Importers and path hooks |
| 615 | |
| 616 | This module contains the various objects that help :keyword:`import` |
| 617 | find and load modules. |
| 618 | |
Brett Cannon | cb66eb0 | 2012-05-11 12:58:42 -0400 | [diff] [blame] | 619 | .. attribute:: SOURCE_SUFFIXES |
| 620 | |
| 621 | A list of strings representing the recognized file suffixes for source |
| 622 | modules. |
| 623 | |
| 624 | .. versionadded:: 3.3 |
| 625 | |
| 626 | .. attribute:: DEBUG_BYTECODE_SUFFIXES |
| 627 | |
| 628 | A list of strings representing the file suffixes for non-optimized bytecode |
| 629 | modules. |
| 630 | |
| 631 | .. versionadded:: 3.3 |
| 632 | |
| 633 | .. attribute:: OPTIMIZED_BYTECODE_SUFFIXES |
| 634 | |
| 635 | A list of strings representing the file suffixes for optimized bytecode |
| 636 | modules. |
| 637 | |
| 638 | .. versionadded:: 3.3 |
| 639 | |
| 640 | .. attribute:: BYTECODE_SUFFIXES |
| 641 | |
| 642 | A list of strings representing the recognized file suffixes for bytecode |
| 643 | modules. Set to either :attr:`DEBUG_BYTECODE_SUFFIXES` or |
| 644 | :attr:`OPTIMIZED_BYTECODE_SUFFIXES` based on whether ``__debug__`` is true. |
| 645 | |
| 646 | .. versionadded:: 3.3 |
| 647 | |
| 648 | .. attribute:: EXTENSION_SUFFIXES |
| 649 | |
Nick Coghlan | 76e0770 | 2012-07-18 23:14:57 +1000 | [diff] [blame] | 650 | A list of strings representing the recognized file suffixes for |
Brett Cannon | cb66eb0 | 2012-05-11 12:58:42 -0400 | [diff] [blame] | 651 | extension modules. |
| 652 | |
| 653 | .. versionadded:: 3.3 |
| 654 | |
Nick Coghlan | c5afd42 | 2012-07-18 23:59:08 +1000 | [diff] [blame] | 655 | .. function:: all_suffixes() |
Nick Coghlan | 76e0770 | 2012-07-18 23:14:57 +1000 | [diff] [blame] | 656 | |
| 657 | Returns a combined list of strings representing all file suffixes for |
Nick Coghlan | c5afd42 | 2012-07-18 23:59:08 +1000 | [diff] [blame] | 658 | modules recognized by the standard import machinery. This is a |
Nick Coghlan | 76e0770 | 2012-07-18 23:14:57 +1000 | [diff] [blame] | 659 | helper for code which simply needs to know if a filesystem path |
Nick Coghlan | c5afd42 | 2012-07-18 23:59:08 +1000 | [diff] [blame] | 660 | potentially refers to a module without needing any details on the kind |
| 661 | of module (for example, :func:`inspect.getmodulename`) |
Nick Coghlan | 76e0770 | 2012-07-18 23:14:57 +1000 | [diff] [blame] | 662 | |
| 663 | .. versionadded:: 3.3 |
| 664 | |
| 665 | |
Brett Cannon | 78246b6 | 2009-01-25 04:56:30 +0000 | [diff] [blame] | 666 | .. class:: BuiltinImporter |
| 667 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 668 | An :term:`importer` for built-in modules. All known built-in modules are |
| 669 | listed in :data:`sys.builtin_module_names`. This class implements the |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 670 | :class:`importlib.abc.MetaPathFinder` and |
| 671 | :class:`importlib.abc.InspectLoader` ABCs. |
Brett Cannon | 78246b6 | 2009-01-25 04:56:30 +0000 | [diff] [blame] | 672 | |
| 673 | Only class methods are defined by this class to alleviate the need for |
| 674 | instantiation. |
| 675 | |
Brett Cannon | 78246b6 | 2009-01-25 04:56:30 +0000 | [diff] [blame] | 676 | |
| 677 | .. class:: FrozenImporter |
| 678 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 679 | An :term:`importer` for frozen modules. This class implements the |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 680 | :class:`importlib.abc.MetaPathFinder` and |
| 681 | :class:`importlib.abc.InspectLoader` ABCs. |
Brett Cannon | 78246b6 | 2009-01-25 04:56:30 +0000 | [diff] [blame] | 682 | |
| 683 | Only class methods are defined by this class to alleviate the need for |
| 684 | instantiation. |
| 685 | |
Brett Cannon | debb98d | 2009-02-16 04:18:01 +0000 | [diff] [blame] | 686 | |
Nick Coghlan | ff79486 | 2012-08-02 21:45:24 +1000 | [diff] [blame] | 687 | .. class:: WindowsRegistryFinder |
| 688 | |
| 689 | :term:`Finder` for modules declared in the Windows registry. This class |
Nick Coghlan | 4941774 | 2012-08-02 23:03:58 +1000 | [diff] [blame] | 690 | implements the :class:`importlib.abc.Finder` ABC. |
Nick Coghlan | ff79486 | 2012-08-02 21:45:24 +1000 | [diff] [blame] | 691 | |
| 692 | Only class methods are defined by this class to alleviate the need for |
| 693 | instantiation. |
| 694 | |
| 695 | .. versionadded:: 3.3 |
| 696 | |
| 697 | |
Brett Cannon | debb98d | 2009-02-16 04:18:01 +0000 | [diff] [blame] | 698 | .. class:: PathFinder |
| 699 | |
Brett Cannon | 1b79918 | 2012-08-17 14:08:24 -0400 | [diff] [blame] | 700 | A :term:`Finder` for :data:`sys.path` and package ``__path__`` attributes. |
| 701 | This class implements the :class:`importlib.abc.MetaPathFinder` ABC. |
Brett Cannon | debb98d | 2009-02-16 04:18:01 +0000 | [diff] [blame] | 702 | |
Brett Cannon | 1b79918 | 2012-08-17 14:08:24 -0400 | [diff] [blame] | 703 | Only class methods are defined by this class to alleviate the need for |
| 704 | instantiation. |
Brett Cannon | debb98d | 2009-02-16 04:18:01 +0000 | [diff] [blame] | 705 | |
Brett Cannon | 1b79918 | 2012-08-17 14:08:24 -0400 | [diff] [blame] | 706 | .. classmethod:: find_module(fullname, path=None) |
Brett Cannon | debb98d | 2009-02-16 04:18:01 +0000 | [diff] [blame] | 707 | |
Brett Cannon | 1b79918 | 2012-08-17 14:08:24 -0400 | [diff] [blame] | 708 | Class method that attempts to find a :term:`loader` for the module |
| 709 | specified by *fullname* on :data:`sys.path` or, if defined, on |
| 710 | *path*. For each path entry that is searched, |
| 711 | :data:`sys.path_importer_cache` is checked. If a non-false object is |
Brett Cannon | 2cefb3c | 2013-05-25 11:26:11 -0400 | [diff] [blame] | 712 | found then it is used as the :term:`path entry finder` to look for the |
| 713 | module being searched for. If no entry is found in |
Brett Cannon | 1b79918 | 2012-08-17 14:08:24 -0400 | [diff] [blame] | 714 | :data:`sys.path_importer_cache`, then :data:`sys.path_hooks` is |
| 715 | searched for a finder for the path entry and, if found, is stored in |
| 716 | :data:`sys.path_importer_cache` along with being queried about the |
| 717 | module. If no finder is ever found then ``None`` is both stored in |
| 718 | the cache and returned. |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 719 | |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 720 | .. classmethod:: invalidate_caches() |
| 721 | |
Brett Cannon | 1b79918 | 2012-08-17 14:08:24 -0400 | [diff] [blame] | 722 | Calls :meth:`importlib.abc.PathEntryFinder.invalidate_caches` on all |
| 723 | finders stored in :attr:`sys.path_importer_cache`. |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 724 | |
Brett Cannon | 27e27f7 | 2013-10-18 11:39:04 -0400 | [diff] [blame] | 725 | .. versionchanged:: 3.4 |
Georg Brandl | 0f5bff2 | 2013-10-19 17:46:38 +0200 | [diff] [blame^] | 726 | Calls objects in :data:`sys.path_hooks` with the current working directory |
Brett Cannon | 27e27f7 | 2013-10-18 11:39:04 -0400 | [diff] [blame] | 727 | for ``''`` (i.e. the empty string). |
| 728 | |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 729 | |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 730 | .. class:: FileFinder(path, \*loader_details) |
| 731 | |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 732 | A concrete implementation of :class:`importlib.abc.PathEntryFinder` which |
| 733 | caches results from the file system. |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 734 | |
| 735 | The *path* argument is the directory for which the finder is in charge of |
| 736 | searching. |
| 737 | |
Brett Cannon | ac9f2f3 | 2012-08-10 13:47:54 -0400 | [diff] [blame] | 738 | The *loader_details* argument is a variable number of 2-item tuples each |
| 739 | containing a loader and a sequence of file suffixes the loader recognizes. |
Brett Cannon | 29b2f17 | 2013-06-21 18:31:55 -0400 | [diff] [blame] | 740 | The loaders are expected to be callables which accept two arguments of |
| 741 | the module's name and the path to the file found. |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 742 | |
| 743 | The finder will cache the directory contents as necessary, making stat calls |
| 744 | for each module search to verify the cache is not outdated. Because cache |
| 745 | staleness relies upon the granularity of the operating system's state |
| 746 | information of the file system, there is a potential race condition of |
| 747 | searching for a module, creating a new file, and then searching for the |
| 748 | module the new file represents. If the operations happen fast enough to fit |
| 749 | within the granularity of stat calls, then the module search will fail. To |
| 750 | prevent this from happening, when you create a module dynamically, make sure |
| 751 | to call :func:`importlib.invalidate_caches`. |
| 752 | |
| 753 | .. versionadded:: 3.3 |
| 754 | |
Georg Brandl | 0f5bff2 | 2013-10-19 17:46:38 +0200 | [diff] [blame^] | 755 | .. versionchanged:: 3.4 |
Brett Cannon | 27e27f7 | 2013-10-18 11:39:04 -0400 | [diff] [blame] | 756 | The empty string is no longer special-cased to be changed into ``'.'``. |
| 757 | |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 758 | .. attribute:: path |
| 759 | |
| 760 | The path the finder will search in. |
| 761 | |
Brett Cannon | 1d75382 | 2013-06-16 19:06:55 -0400 | [diff] [blame] | 762 | .. method:: find_loader(fullname) |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 763 | |
| 764 | Attempt to find the loader to handle *fullname* within :attr:`path`. |
| 765 | |
| 766 | .. method:: invalidate_caches() |
| 767 | |
| 768 | Clear out the internal cache. |
| 769 | |
| 770 | .. classmethod:: path_hook(\*loader_details) |
| 771 | |
| 772 | A class method which returns a closure for use on :attr:`sys.path_hooks`. |
| 773 | An instance of :class:`FileFinder` is returned by the closure using the |
| 774 | path argument given to the closure directly and *loader_details* |
| 775 | indirectly. |
| 776 | |
| 777 | If the argument to the closure is not an existing directory, |
| 778 | :exc:`ImportError` is raised. |
| 779 | |
| 780 | |
| 781 | .. class:: SourceFileLoader(fullname, path) |
| 782 | |
| 783 | A concrete implementation of :class:`importlib.abc.SourceLoader` by |
| 784 | subclassing :class:`importlib.abc.FileLoader` and providing some concrete |
| 785 | implementations of other methods. |
| 786 | |
| 787 | .. versionadded:: 3.3 |
| 788 | |
| 789 | .. attribute:: name |
| 790 | |
| 791 | The name of the module that this loader will handle. |
| 792 | |
| 793 | .. attribute:: path |
| 794 | |
| 795 | The path to the source file. |
| 796 | |
| 797 | .. method:: is_package(fullname) |
| 798 | |
| 799 | Return true if :attr:`path` appears to be for a package. |
| 800 | |
| 801 | .. method:: path_stats(path) |
| 802 | |
| 803 | Concrete implementation of :meth:`importlib.abc.SourceLoader.path_stats`. |
| 804 | |
| 805 | .. method:: set_data(path, data) |
| 806 | |
| 807 | Concrete implementation of :meth:`importlib.abc.SourceLoader.set_data`. |
| 808 | |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 809 | |
Marc-Andre Lemburg | 4fe29c9 | 2012-04-25 02:31:37 +0200 | [diff] [blame] | 810 | .. class:: SourcelessFileLoader(fullname, path) |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 811 | |
| 812 | A concrete implementation of :class:`importlib.abc.FileLoader` which can |
| 813 | import bytecode files (i.e. no source code files exist). |
| 814 | |
Marc-Andre Lemburg | 4fe29c9 | 2012-04-25 02:31:37 +0200 | [diff] [blame] | 815 | Please note that direct use of bytecode files (and thus not source code |
| 816 | files) inhibits your modules from being usable by all Python |
| 817 | implementations or new versions of Python which change the bytecode |
| 818 | format. |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 819 | |
| 820 | .. versionadded:: 3.3 |
| 821 | |
| 822 | .. attribute:: name |
| 823 | |
| 824 | The name of the module the loader will handle. |
| 825 | |
| 826 | .. attribute:: path |
| 827 | |
| 828 | The path to the bytecode file. |
| 829 | |
| 830 | .. method:: is_package(fullname) |
| 831 | |
| 832 | Determines if the module is a package based on :attr:`path`. |
| 833 | |
| 834 | .. method:: get_code(fullname) |
| 835 | |
| 836 | Returns the code object for :attr:`name` created from :attr:`path`. |
| 837 | |
| 838 | .. method:: get_source(fullname) |
| 839 | |
| 840 | Returns ``None`` as bytecode files have no source when this loader is |
| 841 | used. |
| 842 | |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 843 | |
| 844 | .. class:: ExtensionFileLoader(fullname, path) |
| 845 | |
Eric Snow | 5179445 | 2013-10-03 12:08:55 -0600 | [diff] [blame] | 846 | A concrete implementation of :class:`importlib.abc.ExecutionLoader` for |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 847 | extension modules. |
| 848 | |
| 849 | The *fullname* argument specifies the name of the module the loader is to |
| 850 | support. The *path* argument is the path to the extension module's file. |
| 851 | |
| 852 | .. versionadded:: 3.3 |
| 853 | |
| 854 | .. attribute:: name |
| 855 | |
| 856 | Name of the module the loader supports. |
| 857 | |
| 858 | .. attribute:: path |
| 859 | |
| 860 | Path to the extension module. |
| 861 | |
Barry Warsaw | d7d2194 | 2012-07-29 16:36:17 -0400 | [diff] [blame] | 862 | .. method:: load_module(fullname) |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 863 | |
Brett Cannon | c049952 | 2012-05-11 14:48:41 -0400 | [diff] [blame] | 864 | Loads the extension module if and only if *fullname* is the same as |
| 865 | :attr:`name` or is ``None``. |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 866 | |
| 867 | .. method:: is_package(fullname) |
| 868 | |
Brett Cannon | ac9f2f3 | 2012-08-10 13:47:54 -0400 | [diff] [blame] | 869 | Returns ``True`` if the file path points to a package's ``__init__`` |
| 870 | module based on :attr:`EXTENSION_SUFFIXES`. |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 871 | |
| 872 | .. method:: get_code(fullname) |
| 873 | |
| 874 | Returns ``None`` as extension modules lack a code object. |
| 875 | |
| 876 | .. method:: get_source(fullname) |
| 877 | |
| 878 | Returns ``None`` as extension modules do not have source code. |
| 879 | |
Eric Snow | 5179445 | 2013-10-03 12:08:55 -0600 | [diff] [blame] | 880 | .. method:: get_filename(fullname) |
| 881 | |
| 882 | Returns :attr:`path`. |
| 883 | |
Eric Snow | dcd01b4 | 2013-10-04 20:35:34 -0600 | [diff] [blame] | 884 | .. versionadded:: 3.4 |
| 885 | |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 886 | |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 887 | :mod:`importlib.util` -- Utility code for importers |
| 888 | --------------------------------------------------- |
| 889 | |
| 890 | .. module:: importlib.util |
Brett Cannon | 75321e8 | 2012-03-02 11:58:25 -0500 | [diff] [blame] | 891 | :synopsis: Utility code for importers |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 892 | |
| 893 | This module contains the various objects that help in the construction of |
| 894 | an :term:`importer`. |
| 895 | |
Brett Cannon | 05a647d | 2013-06-14 19:02:34 -0400 | [diff] [blame] | 896 | .. attribute:: MAGIC_NUMBER |
| 897 | |
| 898 | The bytes which represent the bytecode version number. If you need help with |
| 899 | loading/writing bytecode then consider :class:`importlib.abc.SourceLoader`. |
| 900 | |
| 901 | .. versionadded:: 3.4 |
| 902 | |
Brett Cannon | a3c9615 | 2013-06-14 22:26:30 -0400 | [diff] [blame] | 903 | .. function:: cache_from_source(path, debug_override=None) |
| 904 | |
| 905 | Return the :pep:`3147` path to the byte-compiled file associated with the |
| 906 | source *path*. For example, if *path* is ``/foo/bar/baz.py`` the return |
| 907 | value would be ``/foo/bar/__pycache__/baz.cpython-32.pyc`` for Python 3.2. |
| 908 | The ``cpython-32`` string comes from the current magic tag (see |
| 909 | :func:`get_tag`; if :attr:`sys.implementation.cache_tag` is not defined then |
| 910 | :exc:`NotImplementedError` will be raised). The returned path will end in |
| 911 | ``.pyc`` when ``__debug__`` is True or ``.pyo`` for an optimized Python |
| 912 | (i.e. ``__debug__`` is False). By passing in True or False for |
| 913 | *debug_override* you can override the system's value for ``__debug__`` for |
| 914 | extension selection. |
| 915 | |
| 916 | *path* need not exist. |
| 917 | |
| 918 | .. versionadded:: 3.4 |
| 919 | |
| 920 | |
| 921 | .. function:: source_from_cache(path) |
| 922 | |
| 923 | Given the *path* to a :pep:`3147` file name, return the associated source code |
| 924 | file path. For example, if *path* is |
| 925 | ``/foo/bar/__pycache__/baz.cpython-32.pyc`` the returned path would be |
| 926 | ``/foo/bar/baz.py``. *path* need not exist, however if it does not conform |
| 927 | to :pep:`3147` format, a ``ValueError`` is raised. If |
| 928 | :attr:`sys.implementation.cache_tag` is not defined, |
| 929 | :exc:`NotImplementedError` is raised. |
| 930 | |
| 931 | .. versionadded:: 3.4 |
| 932 | |
Brett Cannon | f24fecd | 2013-06-16 18:37:53 -0400 | [diff] [blame] | 933 | .. function:: decode_source(source_bytes) |
| 934 | |
| 935 | Decode the given bytes representing source code and return it as a string |
| 936 | with universal newlines (as required by |
| 937 | :meth:`importlib.abc.InspectLoader.get_source`). |
| 938 | |
| 939 | .. versionadded:: 3.4 |
| 940 | |
Brett Cannon | d200bf5 | 2012-05-13 13:45:09 -0400 | [diff] [blame] | 941 | .. function:: resolve_name(name, package) |
| 942 | |
| 943 | Resolve a relative module name to an absolute one. |
| 944 | |
| 945 | If **name** has no leading dots, then **name** is simply returned. This |
| 946 | allows for usage such as |
| 947 | ``importlib.util.resolve_name('sys', __package__)`` without doing a |
| 948 | check to see if the **package** argument is needed. |
| 949 | |
| 950 | :exc:`ValueError` is raised if **name** is a relative module name but |
| 951 | package is a false value (e.g. ``None`` or the empty string). |
| 952 | :exc:`ValueError` is also raised a relative name would escape its containing |
| 953 | package (e.g. requesting ``..bacon`` from within the ``spam`` package). |
| 954 | |
| 955 | .. versionadded:: 3.3 |
| 956 | |
Brett Cannon | b60a43e | 2013-05-31 18:11:17 -0400 | [diff] [blame] | 957 | .. function:: module_to_load(name, *, reset_name=True) |
Brett Cannon | a3687f0 | 2013-05-28 17:29:34 -0400 | [diff] [blame] | 958 | |
Brett Cannon | 357c9fb | 2013-05-30 17:31:47 -0400 | [diff] [blame] | 959 | Returns a :term:`context manager` which provides the module to load. The |
| 960 | module will either come from :attr:`sys.modules` in the case of reloading or |
| 961 | a fresh module if loading a new module. Proper cleanup of |
| 962 | :attr:`sys.modules` occurs if the module was new and an exception was |
| 963 | raised. |
Brett Cannon | a3687f0 | 2013-05-28 17:29:34 -0400 | [diff] [blame] | 964 | |
Brett Cannon | b60a43e | 2013-05-31 18:11:17 -0400 | [diff] [blame] | 965 | If **reset_name** is true and the module requested is being reloaded then |
| 966 | the module's :attr:`__name__` attribute will |
| 967 | be reset to **name**, else it will be left untouched. |
| 968 | |
Brett Cannon | a3687f0 | 2013-05-28 17:29:34 -0400 | [diff] [blame] | 969 | .. versionadded:: 3.4 |
| 970 | |
Georg Brandl | 8a1caa2 | 2010-07-29 16:01:11 +0000 | [diff] [blame] | 971 | .. decorator:: module_for_loader |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 972 | |
Brett Cannon | a22faca | 2013-05-28 17:50:14 -0400 | [diff] [blame] | 973 | A :term:`decorator` for :meth:`importlib.abc.Loader.load_module` |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 974 | to handle selecting the proper |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 975 | module object to load with. The decorated method is expected to have a call |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 976 | signature taking two positional arguments |
| 977 | (e.g. ``load_module(self, module)``) for which the second argument |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 978 | will be the module **object** to be used by the loader. |
Brett Cannon | efad00d | 2012-04-27 17:27:14 -0400 | [diff] [blame] | 979 | Note that the decorator will not work on static methods because of the |
| 980 | assumption of two arguments. |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 981 | |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 982 | The decorated method will take in the **name** of the module to be loaded |
| 983 | as expected for a :term:`loader`. If the module is not found in |
Brett Cannon | 3dc48d6 | 2013-05-28 18:35:54 -0400 | [diff] [blame] | 984 | :data:`sys.modules` then a new one is constructed. Regardless of where the |
| 985 | module came from, :attr:`__loader__` set to **self** and :attr:`__package__` |
| 986 | is set based on what :meth:`importlib.abc.InspectLoader.is_package` returns |
| 987 | (if available). These attributes are set unconditionally to support |
| 988 | reloading. |
Brett Cannon | efad00d | 2012-04-27 17:27:14 -0400 | [diff] [blame] | 989 | |
| 990 | If an exception is raised by the decorated method and a module was added to |
Brett Cannon | a87e31c | 2013-09-13 16:52:19 -0400 | [diff] [blame] | 991 | :data:`sys.modules`, then the module will be removed to prevent a partially |
| 992 | initialized module from being in left in :data:`sys.modules`. If the module |
| 993 | was already in :data:`sys.modules` then it is left alone. |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 994 | |
Brett Cannon | efad00d | 2012-04-27 17:27:14 -0400 | [diff] [blame] | 995 | .. versionchanged:: 3.3 |
Georg Brandl | 61063cc | 2012-06-24 22:48:30 +0200 | [diff] [blame] | 996 | :attr:`__loader__` and :attr:`__package__` are automatically set |
| 997 | (when possible). |
Brett Cannon | 57b46f5 | 2009-03-02 14:38:26 +0000 | [diff] [blame] | 998 | |
Brett Cannon | 3dc48d6 | 2013-05-28 18:35:54 -0400 | [diff] [blame] | 999 | .. versionchanged:: 3.4 |
Brett Cannon | 0dbb4c7 | 2013-05-31 18:56:47 -0400 | [diff] [blame] | 1000 | Set :attr:`__name__`, :attr:`__loader__` :attr:`__package__` |
| 1001 | unconditionally to support reloading. |
| 1002 | |
| 1003 | .. deprecated:: 3.4 |
| 1004 | For the benefit of :term:`loader` subclasses, please use |
| 1005 | :func:`module_to_load` and |
| 1006 | :meth:`importlib.abc.Loader.init_module_attrs` instead. |
Brett Cannon | 3dc48d6 | 2013-05-28 18:35:54 -0400 | [diff] [blame] | 1007 | |
Georg Brandl | 8a1caa2 | 2010-07-29 16:01:11 +0000 | [diff] [blame] | 1008 | .. decorator:: set_loader |
Brett Cannon | 2cf03a8 | 2009-03-10 05:17:37 +0000 | [diff] [blame] | 1009 | |
Brett Cannon | a22faca | 2013-05-28 17:50:14 -0400 | [diff] [blame] | 1010 | A :term:`decorator` for :meth:`importlib.abc.Loader.load_module` |
| 1011 | to set the :attr:`__loader__` |
| 1012 | attribute on the returned module. If the attribute is already set the |
| 1013 | decorator does nothing. It is assumed that the first positional argument to |
| 1014 | the wrapped method (i.e. ``self``) is what :attr:`__loader__` should be set |
| 1015 | to. |
Brett Cannon | 2cf03a8 | 2009-03-10 05:17:37 +0000 | [diff] [blame] | 1016 | |
Brett Cannon | efad00d | 2012-04-27 17:27:14 -0400 | [diff] [blame] | 1017 | .. note:: |
Brett Cannon | a22faca | 2013-05-28 17:50:14 -0400 | [diff] [blame] | 1018 | As this decorator sets :attr:`__loader__` after loading the module, it is |
Brett Cannon | 0dbb4c7 | 2013-05-31 18:56:47 -0400 | [diff] [blame] | 1019 | recommended to use :meth:`importlib.abc.Loader.init_module_attrs` instead |
| 1020 | when appropriate. |
Brett Cannon | efad00d | 2012-04-27 17:27:14 -0400 | [diff] [blame] | 1021 | |
Brett Cannon | 4802bec | 2013-03-13 10:41:36 -0700 | [diff] [blame] | 1022 | .. versionchanged:: 3.4 |
Brett Cannon | 4c14b5d | 2013-05-04 13:56:58 -0400 | [diff] [blame] | 1023 | Set ``__loader__`` if set to ``None``, as if the attribute does not |
Brett Cannon | 4802bec | 2013-03-13 10:41:36 -0700 | [diff] [blame] | 1024 | exist. |
| 1025 | |
Georg Brandl | 8a1caa2 | 2010-07-29 16:01:11 +0000 | [diff] [blame] | 1026 | .. decorator:: set_package |
Brett Cannon | 57b46f5 | 2009-03-02 14:38:26 +0000 | [diff] [blame] | 1027 | |
Brett Cannon | a22faca | 2013-05-28 17:50:14 -0400 | [diff] [blame] | 1028 | A :term:`decorator` for :meth:`importlib.abc.Loader.load_module` to set the :attr:`__package__` attribute on the returned module. If :attr:`__package__` |
| 1029 | is set and has a value other than ``None`` it will not be changed. |
Brett Cannon | 16248a4 | 2009-04-01 20:47:14 +0000 | [diff] [blame] | 1030 | |
Brett Cannon | efad00d | 2012-04-27 17:27:14 -0400 | [diff] [blame] | 1031 | .. note:: |
Brett Cannon | a22faca | 2013-05-28 17:50:14 -0400 | [diff] [blame] | 1032 | As this decorator sets :attr:`__package__` after loading the module, it is |
Brett Cannon | 0dbb4c7 | 2013-05-31 18:56:47 -0400 | [diff] [blame] | 1033 | recommended to use :meth:`importlib.abc.Loader.init_module_attrs` instead |
| 1034 | when appropriate. |