summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-08-04 08:12:36 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-08-04 08:12:36 (GMT)
commitc1731373914622dcaa4de259b96ec44d490b5e2c (patch)
treee6fc3dc8c57669055ce2f43b56ac02f4b3534796 /Misc
parent289898cdbb1d4526ce45e600ed2843a14d1feb0d (diff)
downloadcpython-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/ACKS1
-rw-r--r--Misc/NEWS9
2 files changed, 8 insertions, 2 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index ddaf16a..1a4d223 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -42,6 +42,7 @@ Roy Bixler
Pablo Bleyer
Finn Bock
Paul Boddie
+David Bolen
Jurjen Bos
Peter Bosch
Eric Bouck
diff --git a/Misc/NEWS b/Misc/NEWS
index d93ab86..a1e9fc0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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?
===========================