summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-11-30 00:16:44 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-11-30 00:16:44 (GMT)
commit36dfe784568b2d01bc03b3151ff6974b8ba42acf (patch)
treedd4f4fd5f97578d2a0e5d4b6a12c22de73757b08 /Misc/NEWS
parentac4a07c714fbe5560cd1204c1335e5fcea4b2ef3 (diff)
downloadcpython-36dfe784568b2d01bc03b3151ff6974b8ba42acf.zip
cpython-36dfe784568b2d01bc03b3151ff6974b8ba42acf.tar.gz
cpython-36dfe784568b2d01bc03b3151ff6974b8ba42acf.tar.bz2
Merged revisions 76593 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r76593 | amaury.forgeotdarc | 2009-11-30 01:08:56 +0100 (lun., 30 nov. 2009) | 5 lines #6077: on Windows, fix truncation of a tempfile.TemporaryFile opened in "wt+" mode: files opened with os.open() stop on the first \x1a (Ctrl-Z) unless os.O_BINARY is used. Will backport to 3.1 ........
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 375004f..6d7c4e3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.1.2?
Core and Builtins
-----------------
+- Issue #6077: On Windows, files opened with tempfile.TemporaryFile in "wt+"
+ mode would appear truncated on the first '0x1a' byte (aka. Ctrl+Z).
+
- Issue #7085: Fix crash when importing some extensions in a thread
on MacOSX 10.6.