summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-01-23 17:15:06 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-01-23 17:15:06 (GMT)
commitb2302ba9771d3c2795ae6c78d881b0c4715e2f63 (patch)
treeeeb644781fcfb031d1e3c676029dea6987de3b88 /Misc
parent082c9b0267e45cdff9bb8d30a4332f63bd14c58e (diff)
downloadcpython-b2302ba9771d3c2795ae6c78d881b0c4715e2f63.zip
cpython-b2302ba9771d3c2795ae6c78d881b0c4715e2f63.tar.gz
cpython-b2302ba9771d3c2795ae6c78d881b0c4715e2f63.tar.bz2
Applied #1069410
The "can't load dll" message box on Windows is suppressed while an extension is loaded by calling SetErrorMode in dynload_win.c. The error is still reported properly.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4c1080a..9c083e2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 2.6 alpha 1?
Core and builtins
-----------------
+- Issue #1069410: The "can't load dll" message box on Windows is
+ suppressed while an extension is loaded by calling SetErrorMode in
+ dynload_win.c. The error is still reported properly.
+
- Bug #1915: Python compiles with --enable-unicode=no again. However
several extension methods and modules do not work without unicode
support.