diff options
author | Thomas Wouters <thomas@python.org> | 2006-02-28 16:37:25 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2006-02-28 16:37:25 (GMT) |
commit | fb609f421568e53d05c979980f00455d2b5da820 (patch) | |
tree | c54d1ea17077a011d49c524312d02389335252fe /Misc | |
parent | f7f438ba3b05eb4356e7511401686b07d9dfb6d8 (diff) | |
download | cpython-fb609f421568e53d05c979980f00455d2b5da820.zip cpython-fb609f421568e53d05c979980f00455d2b5da820.tar.gz cpython-fb609f421568e53d05c979980f00455d2b5da820.tar.bz2 |
Wups, add NEWS item I'd written but not checked in.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -12,6 +12,12 @@ What's New in Python 2.5 alpha 1? Core and builtins ----------------- +- Patch #1438387, PEP 328: relative and absolute imports. Imports can now be + explicitly relative, using 'from .module import name' to mean 'from the same + package as this module is in. Imports without dots still default to the + old relative-then-absolute, unless 'from __future__ import + absolute_import' is used. + - Properly check if 'warnings' raises an exception (usually when a filter set to "error" is triggered) when raising a warning for raising string exceptions. |