summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-11-04 20:30:33 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-11-04 20:30:33 (GMT)
commitaeb6ceead796af4746f5b2f816b23654816033b7 (patch)
tree9836b77eb1f4868f39bc499d3c6d8abe3f13bbca /Misc
parent8f2e07b7d0510a008bcf63640ebe66d397e0bf52 (diff)
downloadcpython-aeb6ceead796af4746f5b2f816b23654816033b7.zip
cpython-aeb6ceead796af4746f5b2f816b23654816033b7.tar.gz
cpython-aeb6ceead796af4746f5b2f816b23654816033b7.tar.bz2
Issue #10293: Remove obsolete field in the PyMemoryView structure,
unused undocumented value PyBUF_SHADOW, and strangely-looking code in PyMemoryView_GetContiguous.
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 39c3bf0..50bc33a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.2 Beta 1?
Core and Builtins
-----------------
+- Issue #10293: Remove obsolete field in the PyMemoryView structure,
+ unused undocumented value PyBUF_SHADOW, and strangely-looking code in
+ PyMemoryView_GetContiguous.
+
- Issue #6081: Add str.format_map, similar to str.format(**mapping).
- If FileIO.__init__ fails, close the file descriptor.