summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-09-26 21:49:22 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-09-26 21:49:22 (GMT)
commit60320cb3e4fa0d77ae5f8634d83de497bba003f6 (patch)
treeab3e84cb632dae602140ad8392170c7392930699 /Misc
parent8a1b689e85a367c1a5f0bcbdcc7cd28e3f20d162 (diff)
downloadcpython-60320cb3e4fa0d77ae5f8634d83de497bba003f6.zip
cpython-60320cb3e4fa0d77ae5f8634d83de497bba003f6.tar.gz
cpython-60320cb3e4fa0d77ae5f8634d83de497bba003f6.tar.bz2
#3946 fix PyObject_CheckBuffer on a memoryview object
reviewed by Antoine
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 36240ed..294c183 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 3.0 release candidate 2
Core and Builtins
-----------------
+- Issue #3946: PyObject_CheckReadBuffer crashed on a memoryview object.
+
- Issue #1688: On Windows, the input() prompt was not correctly displayed if it
contains non-ascii characters.