Withdraw the now obsolete PEP 406
This commit is contained in:
parent
79abbe6abc
commit
b7c3460c76
19
pep-0406.txt
19
pep-0406.txt
|
@ -3,7 +3,7 @@ Title: Improved Encapsulation of Import State
|
||||||
Version: $Revision$
|
Version: $Revision$
|
||||||
Last-Modified: $Date$
|
Last-Modified: $Date$
|
||||||
Author: Nick Coghlan <ncoghlan@gmail.com>, Greg Slodkowicz <jergosh@gmail.com>
|
Author: Nick Coghlan <ncoghlan@gmail.com>, Greg Slodkowicz <jergosh@gmail.com>
|
||||||
Status: Deferred
|
Status: Withdrawn
|
||||||
Type: Standards Track
|
Type: Standards Track
|
||||||
Content-Type: text/x-rst
|
Content-Type: text/x-rst
|
||||||
Created: 4-Jul-2011
|
Created: 4-Jul-2011
|
||||||
|
@ -30,16 +30,17 @@ straightforward support for related state updates (e.g. selectively
|
||||||
invalidating path cache entries when ``sys.path`` is modified).
|
invalidating path cache entries when ``sys.path`` is modified).
|
||||||
|
|
||||||
|
|
||||||
PEP Deferral
|
PEP Withdrawal
|
||||||
============
|
==============
|
||||||
|
|
||||||
The import system is already seeing substantial changes in Python 3.3, to
|
The import system has seen substantial changes since this PEP was originally
|
||||||
natively handle packages split across multiple directories (PEP 382) and
|
written, as part of :pep:`420` in Python 3.3 and :pep:`451` in Python 3.4.
|
||||||
(potentially) to make the import semantics in the main module better match
|
|
||||||
those in other modules (PEP 395).
|
|
||||||
|
|
||||||
Accordingly, the proposal in this PEP will not be seriously considered until
|
While providing an encapsulation of the import state is still highly
|
||||||
Python 3.4 at the earliest.
|
desirable, it is better tackled in a new PEP using PEP 451 as a foundation,
|
||||||
|
and permitting only the use of PEP 451 compatible finders and loaders (as
|
||||||
|
those avoid many of the issues of direct manipulation of global state
|
||||||
|
associated with the previous loader API).
|
||||||
|
|
||||||
|
|
||||||
Rationale
|
Rationale
|
||||||
|
|
Loading…
Reference in New Issue