PEP 489: The PEP is accepted.
This commit is contained in:
parent
e2ebedeb23
commit
23ee38fc29
11
pep-0489.txt
11
pep-0489.txt
|
@ -7,13 +7,13 @@ Author: Petr Viktorin <encukou@gmail.com>,
|
||||||
Nick Coghlan <ncoghlan@gmail.com>
|
Nick Coghlan <ncoghlan@gmail.com>
|
||||||
BDFL-Delegate: Eric Snow <ericsnowcurrently@gmail.com>
|
BDFL-Delegate: Eric Snow <ericsnowcurrently@gmail.com>
|
||||||
Discussions-To: import-sig@python.org
|
Discussions-To: import-sig@python.org
|
||||||
Status: Draft
|
Status: Final
|
||||||
Type: Standards Track
|
Type: Standards Track
|
||||||
Content-Type: text/x-rst
|
Content-Type: text/x-rst
|
||||||
Created: 11-Aug-2013
|
Created: 11-Aug-2013
|
||||||
Python-Version: 3.5
|
Python-Version: 3.5
|
||||||
Post-History: 23-Aug-2013, 20-Feb-2015, 16-Apr-2015
|
Post-History: 23-Aug-2013, 20-Feb-2015, 16-Apr-2015, 7-May-2015, 18-May-2015
|
||||||
Resolution:
|
Resolution: https://mail.python.org/pipermail/python-dev/2015-May/140108.html
|
||||||
|
|
||||||
|
|
||||||
Abstract
|
Abstract
|
||||||
|
@ -730,8 +730,13 @@ New structures:
|
||||||
|
|
||||||
* PyModuleDef_Slot
|
* PyModuleDef_Slot
|
||||||
|
|
||||||
|
Other changes:
|
||||||
|
|
||||||
PyModuleDef.m_reload changes to PyModuleDef.m_slots.
|
PyModuleDef.m_reload changes to PyModuleDef.m_slots.
|
||||||
|
|
||||||
|
``BuiltinImporter`` and ``ExtensionFileLoader`` will now implement
|
||||||
|
``create_module`` and ``exec_module``.
|
||||||
|
|
||||||
The internal ``_imp`` module will have backwards incompatible changes:
|
The internal ``_imp`` module will have backwards incompatible changes:
|
||||||
``create_builtin``, ``create_dynamic``, and ``exec_dynamic`` will be added;
|
``create_builtin``, ``create_dynamic``, and ``exec_dynamic`` will be added;
|
||||||
``init_builtin``, ``load_dynamic`` will be removed.
|
``init_builtin``, ``load_dynamic`` will be removed.
|
||||||
|
|
Loading…
Reference in New Issue