Mark PEP 366 as accepted
This commit is contained in:
parent
76f348481f
commit
69c82ae02c
|
@ -75,6 +75,7 @@ Index by Category
|
||||||
Accepted PEPs (accepted; may not be implemented yet)
|
Accepted PEPs (accepted; may not be implemented yet)
|
||||||
|
|
||||||
SA 358 The "bytes" Object Schemenauer, GvR
|
SA 358 The "bytes" Object Schemenauer, GvR
|
||||||
|
SA 366 Main module explicit relative imports Coghlan
|
||||||
SA 3101 Advanced String Formatting Talin
|
SA 3101 Advanced String Formatting Talin
|
||||||
SA 3106 Revamping dict.keys(), .values() & .items() GvR
|
SA 3106 Revamping dict.keys(), .values() & .items() GvR
|
||||||
SA 3118 Revising the buffer protocol Oliphant, Banks
|
SA 3118 Revising the buffer protocol Oliphant, Banks
|
||||||
|
@ -91,7 +92,6 @@ Index by Category
|
||||||
S 362 Function Signature Object Cannon, Seo
|
S 362 Function Signature Object Cannon, Seo
|
||||||
S 364 Transitioning to the Py3K Standard Library Warsaw
|
S 364 Transitioning to the Py3K Standard Library Warsaw
|
||||||
S 365 Adding the pkg_resources module Eby
|
S 365 Adding the pkg_resources module Eby
|
||||||
S 366 Main module explicit relative imports Coghlan
|
|
||||||
S 368 Standard image protocol and class Mastrodomenico
|
S 368 Standard image protocol and class Mastrodomenico
|
||||||
S 3108 Standard Library Reorganization Cannon
|
S 3108 Standard Library Reorganization Cannon
|
||||||
S 3116 New I/O Stutzbach, Verdone, GvR
|
S 3116 New I/O Stutzbach, Verdone, GvR
|
||||||
|
@ -464,7 +464,7 @@ Numerical Index
|
||||||
SR 363 Syntax For Dynamic Attribute Access North
|
SR 363 Syntax For Dynamic Attribute Access North
|
||||||
S 364 Transitioning to the Py3K Standard Library Warsaw
|
S 364 Transitioning to the Py3K Standard Library Warsaw
|
||||||
S 365 Adding the pkg_resources module Eby
|
S 365 Adding the pkg_resources module Eby
|
||||||
S 366 Main module explicit relative imports Coghlan
|
SA 366 Main module explicit relative imports Coghlan
|
||||||
SR 367 New Super Spealman, Delaney
|
SR 367 New Super Spealman, Delaney
|
||||||
S 368 Standard image protocol and class Mastrodomenico
|
S 368 Standard image protocol and class Mastrodomenico
|
||||||
SR 666 Reject Foolish Indentation Creighton
|
SR 666 Reject Foolish Indentation Creighton
|
||||||
|
|
|
@ -3,7 +3,7 @@ Title: Main module explicit relative imports
|
||||||
Version: $Revision$
|
Version: $Revision$
|
||||||
Last-Modified: $Date$
|
Last-Modified: $Date$
|
||||||
Author: Nick Coghlan <ncoghlan@gmail.com>
|
Author: Nick Coghlan <ncoghlan@gmail.com>
|
||||||
Status: Draft
|
Status: Accepted
|
||||||
Type: Standards Track
|
Type: Standards Track
|
||||||
Content-Type: text/x-rst
|
Content-Type: text/x-rst
|
||||||
Created: 1-May-2007
|
Created: 1-May-2007
|
||||||
|
@ -24,6 +24,7 @@ to work automatically if the module is executed using the ``-m`` switch.
|
||||||
A small amount of boilerplate in the module itself will allow the relative
|
A small amount of boilerplate in the module itself will allow the relative
|
||||||
imports to work when the file is executed by name.
|
imports to work when the file is executed by name.
|
||||||
|
|
||||||
|
Guido accepted the PEP in November 2007 [5]_.
|
||||||
|
|
||||||
Proposed Change
|
Proposed Change
|
||||||
===============
|
===============
|
||||||
|
@ -129,6 +130,9 @@ References
|
||||||
.. [4] PEP 366 implementation patch
|
.. [4] PEP 366 implementation patch
|
||||||
(http://bugs.python.org/issue1487)
|
(http://bugs.python.org/issue1487)
|
||||||
|
|
||||||
|
.. [5] Acceptance of the PEP
|
||||||
|
(http://mail.python.org/pipermail/python-dev/2007-November/075475.html)
|
||||||
|
|
||||||
Copyright
|
Copyright
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue