diff options
author | Brett Cannon <brett@python.org> | 2013-06-14 23:02:34 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-06-14 23:02:34 (GMT) |
commit | 05a647deedd11c227619f9463920526471db54f1 (patch) | |
tree | 0b7ac3a4d54cbd4fc5065484104385c61ef56fd9 /Doc/library/importlib.rst | |
parent | 4d7056258b07df7cbb1b9b44e7a1a9bad04f7454 (diff) | |
download | cpython-05a647deedd11c227619f9463920526471db54f1.zip cpython-05a647deedd11c227619f9463920526471db54f1.tar.gz cpython-05a647deedd11c227619f9463920526471db54f1.tar.bz2 |
Issue #18192: Introduce importlib.util.MAGIC_NUMBER and document the
deprecation of imp.get_magic().
Diffstat (limited to 'Doc/library/importlib.rst')
-rw-r--r-- | Doc/library/importlib.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index 0caabaa..e9b7717 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -879,6 +879,13 @@ find and load modules. This module contains the various objects that help in the construction of an :term:`importer`. +.. attribute:: MAGIC_NUMBER + + The bytes which represent the bytecode version number. If you need help with + loading/writing bytecode then consider :class:`importlib.abc.SourceLoader`. + + .. versionadded:: 3.4 + .. function:: resolve_name(name, package) Resolve a relative module name to an absolute one. |