summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-01-04 01:21:27 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-01-04 01:21:27 (GMT)
commitbccd63c389d72d22882264b8e9cf6e8e5911106c (patch)
tree4a66ab5f1570c507390311b077e2af12fbb383b0
parent2e1d0f00a4899f5371b3c3147951461b4c2ebd52 (diff)
downloadcpython-bccd63c389d72d22882264b8e9cf6e8e5911106c.zip
cpython-bccd63c389d72d22882264b8e9cf6e8e5911106c.tar.gz
cpython-bccd63c389d72d22882264b8e9cf6e8e5911106c.tar.bz2
NEWS entry for r59682.
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7516516..1dbba8c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,11 @@ What's New in Python 3.0a3?
Core and Builtins
-----------------
+- Improve some exception messages when Windows fails to load an extension
+ module. Now we get for example '%1 is not a valid Win32 application' instead
+ of 'error code 193'. Also use Unicode strings to deal with non-English
+ locales.
+
- Issue #1587: Added instancemethod wrapper for PyCFunctions. The Python C API
has gained a new type *PyInstanceMethod_Type* and the functions
*PyInstanceMethod_Check(o)*, *PyInstanceMethod_New(func)* and