summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-10-21 04:37:25 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-10-21 04:37:25 (GMT)
commit777d0c5c21916a0104d366da5205218ae99556b2 (patch)
tree2af3e7e8d3729a0eb7c4d1554cdd494292669699 /Doc/whatsnew
parent353af2902c9fe0773ee5a4972ddc38d002df6042 (diff)
parent8cd45bd48d495a78280e8c8c9377a9a9d4372bb2 (diff)
downloadcpython-777d0c5c21916a0104d366da5205218ae99556b2.zip
cpython-777d0c5c21916a0104d366da5205218ae99556b2.tar.gz
cpython-777d0c5c21916a0104d366da5205218ae99556b2.tar.bz2
Merge PEP name fix with 3.3.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.3.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
index 7c9ef24..bba2415 100644
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -122,8 +122,8 @@ tree.
PEP written by Carl Meyer; implementation by Carl Meyer and Vinay Sajip
-PEP 420: Namespace Packages
-===========================
+PEP 420: Implicit Namespace Packages
+====================================
Native support for package directories that don't require ``__init__.py``
marker files and can automatically span multiple path segments (inspired by
@@ -132,7 +132,7 @@ various third party approaches to namespace packages, as described in
.. seealso::
- :pep:`420` - Namespace packages
+ :pep:`420` - Implicit Namespace Packages
PEP written by Eric V. Smith; implementation by Eric V. Smith
and Barry Warsaw