summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2007-12-03 12:55:17 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2007-12-03 12:55:17 (GMT)
commitef01d822aaea11ae25f78cb0be32865a5df07620 (patch)
tree0fbbaa653cb033490019809a9eb8b3c3ac942c74 /Misc
parentf19b95112669db32556c157c04f064d319c11f09 (diff)
downloadcpython-ef01d822aaea11ae25f78cb0be32865a5df07620.zip
cpython-ef01d822aaea11ae25f78cb0be32865a5df07620.tar.gz
cpython-ef01d822aaea11ae25f78cb0be32865a5df07620.tar.bz2
Implement PEP 366
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c32e3f9..d61851c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 2.6 alpha 1?
Core and builtins
-----------------
+- PEP 366: Allow explicit relative imports when executing modules
+ inside packages with the -m switch via a new module level
+ __package__ attribute.
+
- Issue #1534: Added ``PyFloat_GetMax()``, ``PyFloat_GetMin()`` and
``PyFloat_GetInfo()`` to the float API.