diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2006-04-23 17:04:07 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2006-04-23 17:04:07 (GMT) |
commit | 4383230b904c6bd453a562f7bf379887eb43d464 (patch) | |
tree | ba836359bb70c228273713cf46533da38bf8583b | |
parent | 09b1bc39e7d5405225dcff042ca17afea5389ee0 (diff) | |
download | cpython-4383230b904c6bd453a562f7bf379887eb43d464.zip cpython-4383230b904c6bd453a562f7bf379887eb43d464.tar.gz cpython-4383230b904c6bd453a562f7bf379887eb43d464.tar.bz2 |
Backdated NEWS entry to record the implementation of PEP 338 for alpha 1
-rw-r--r-- | Misc/NEWS | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -181,6 +181,9 @@ What's New in Python 2.5 alpha 1? Core and builtins ----------------- +- PEP 338: -m command line switch now delegates to runpy.run_module + allowing it to support modules in packages and zipfiles + - On Windows, .DLL is not an accepted file name extension for extension modules anymore; extensions are only found if they end in .PYD. @@ -670,6 +673,10 @@ Extension Modules Library ------- +- PEP 338: new module runpy defines a run_module function to support + executing modules which provide access to source code or a code object + via the PEP 302 import mechanisms. + - The email module's parsedate_tz function now sets the daylight savings flag to -1 (unknown) since it can't tell from the date whether it should be set. |