diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-08-04 08:12:36 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-08-04 08:12:36 (GMT) |
commit | c1731373914622dcaa4de259b96ec44d490b5e2c (patch) | |
tree | e6fc3dc8c57669055ce2f43b56ac02f4b3534796 /Misc | |
parent | 289898cdbb1d4526ce45e600ed2843a14d1feb0d (diff) | |
download | cpython-c1731373914622dcaa4de259b96ec44d490b5e2c.zip cpython-c1731373914622dcaa4de259b96ec44d490b5e2c.tar.gz cpython-c1731373914622dcaa4de259b96ec44d490b5e2c.tar.bz2 |
Derived from SF patch #446899 Permit import of .pyw under Windows, from
David Bolen.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 9 |
2 files changed, 8 insertions, 2 deletions
@@ -42,6 +42,7 @@ Roy Bixler Pablo Bleyer Finn Bock Paul Boddie +David Bolen Jurjen Bos Peter Bosch Eric Bouck @@ -32,12 +32,17 @@ C API against buffer overruns. - Unicode APIs now use name mangling to assure that mixing interpreters - and extensions using different Unicode widths is rendered next to - impossible. Trying to import an incompatible Unicode-aware extension + and extensions using different Unicode widths is rendered next to + impossible. Trying to import an incompatible Unicode-aware extension will result in an ImportError. Unicode extensions writers must make sure to check the Unicode width compatibility in their extensions by using at least one of the mangled Unicode APIs in the extension. +Windows + +- "import module" now compiles module.pyw if it exists and nothing else + relevant is found. + What's New in Python 2.2a1? =========================== |