summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2008-08-19 18:22:14 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2008-08-19 18:22:14 (GMT)
commitee58fa484ed535ec6d7f2b93cb3ef2addeb337e1 (patch)
tree9398d06f962ab532ad8bc80407630069491c1871 /Misc/NEWS
parentfd036451bf0e0ade8783e21df801abf7be96d020 (diff)
downloadcpython-ee58fa484ed535ec6d7f2b93cb3ef2addeb337e1.zip
cpython-ee58fa484ed535ec6d7f2b93cb3ef2addeb337e1.tar.gz
cpython-ee58fa484ed535ec6d7f2b93cb3ef2addeb337e1.tar.bz2
#3560: cleanup C memoryview API
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e8fa5f5..8d163c2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,12 @@ What's new in Python 3.0b3?
Core and Builtins
-----------------
+- Issue #3560: clean up the new C PyMemoryView API so that naming is
+ internally consistent; add macros PyMemoryView_GET_BASE() and
+ PyMemoryView_GET_BUFFER() to access useful properties of a memory views
+ without relying on a particular implementation; remove the ill-named
+ PyMemoryView() function (PyMemoryView_GET_BUFFER() can be used instead).
+
- Issue #1819: function calls with several named parameters are now on
average 35% faster (as measured by pybench).