summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRoss Lagerwall <rosslagerwall@gmail.com>2011-06-25 08:02:37 (GMT)
committerRoss Lagerwall <rosslagerwall@gmail.com>2011-06-25 08:02:37 (GMT)
commitdbfb9b89db6cf2f1bc63c9be9bfab476d7141181 (patch)
treea1dc9d0216b8a8fb847de9379f99012f6ba802f0 /Misc
parente697e3750f1273df0968193eea167c83a60f4c84 (diff)
downloadcpython-dbfb9b89db6cf2f1bc63c9be9bfab476d7141181.zip
cpython-dbfb9b89db6cf2f1bc63c9be9bfab476d7141181.tar.gz
cpython-dbfb9b89db6cf2f1bc63c9be9bfab476d7141181.tar.bz2
Issue 12404: Remove C89 incompatible code from mmap module.
Patch by Akira Kitada.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 60405dd..9dfd0ac 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -25,6 +25,9 @@ Core and Builtins
Library
-------
+- Issue #12404: Remove C89 incompatible code from mmap module. Patch by Akira
+ Kitada.
+
- Issue #12383: Fix subprocess module with env={}: don't copy the environment
variables, start with an empty environment.