summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2009-01-02 20:47:48 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2009-01-02 20:47:48 (GMT)
commit5c88d8178442af4d2ac9f42774bc9ab4c45e5751 (patch)
tree83b185a26a0266b70228ada4c6f663bb5371797f /Misc
parent770b0be53eb8a0f518ada4c17ea07fc2bcb9d248 (diff)
downloadcpython-5c88d8178442af4d2ac9f42774bc9ab4c45e5751.zip
cpython-5c88d8178442af4d2ac9f42774bc9ab4c45e5751.tar.gz
cpython-5c88d8178442af4d2ac9f42774bc9ab4c45e5751.tar.bz2
Merged revisions 68172-68173 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r68172 | martin.v.loewis | 2009-01-02 21:32:55 +0100 (Fr, 02 Jan 2009) | 2 lines Issue #4075: Use OutputDebugStringW in Py_FatalError. ........ r68173 | martin.v.loewis | 2009-01-02 21:40:14 +0100 (Fr, 02 Jan 2009) | 2 lines Issue #4051: Prevent conflict of UNICODE macros in cPickle. ........
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 3934928..a933540 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 3.1 alpha 0
Core and Builtins
-----------------
+- Issue #4075: Use OutputDebugStringW in Py_FatalError.
+
- Issue #4747: When the terminal does not use utf-8, executing a script with
non-ascii characters in its name could fail with a "SyntaxError: None" error.
@@ -175,6 +177,8 @@ Tools/Demos
Extension Modules
-----------------
+- Issue #4051: Prevent conflict of UNICODE macros in cPickle.
+
- Issue #4738: Each zlib object now has a separate lock, allowing to compress
or decompress several streams at once on multi-CPU systems. Also, the GIL
is now released when computing the CRC of a large buffer. Patch by ebfe.