summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRoss Lagerwall <rosslagerwall@gmail.com>2011-06-25 07:55:10 (GMT)
committerRoss Lagerwall <rosslagerwall@gmail.com>2011-06-25 07:55:10 (GMT)
commitffa8e2fb5637db784478e0f1f3c0d260dbae972e (patch)
treeb4aba5b7ffe6cd26a69a4b0d5a083d888cc4fc12 /Misc
parent17e2b40aae9bcc5d55da6a1d96b439684fa68a40 (diff)
downloadcpython-ffa8e2fb5637db784478e0f1f3c0d260dbae972e.zip
cpython-ffa8e2fb5637db784478e0f1f3c0d260dbae972e.tar.gz
cpython-ffa8e2fb5637db784478e0f1f3c0d260dbae972e.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 2e33e7f..bddddfa 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -16,6 +16,9 @@ Core and Builtins
Library
-------
+- Issue #12404: Remove C89 incompatible code from mmap module. Patch by Akira
+ Kitada.
+
- Issue #11700: mailbox proxy object close methods can now be called multiple
times without error, and _ProxyFile now closes the wrapped file.