diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2008-08-19 18:22:14 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2008-08-19 18:22:14 (GMT) |
commit | ee58fa484ed535ec6d7f2b93cb3ef2addeb337e1 (patch) | |
tree | 9398d06f962ab532ad8bc80407630069491c1871 /Misc/NEWS | |
parent | fd036451bf0e0ade8783e21df801abf7be96d020 (diff) | |
download | cpython-ee58fa484ed535ec6d7f2b93cb3ef2addeb337e1.zip cpython-ee58fa484ed535ec6d7f2b93cb3ef2addeb337e1.tar.gz cpython-ee58fa484ed535ec6d7f2b93cb3ef2addeb337e1.tar.bz2 |
#3560: cleanup C memoryview API
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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). |