From: Thomas Heller Date: Thu, 5 Jun 2008 17:52:59 +0000 (+0000) Subject: Backport from py3k: Implement the new buffer interface from pep3118 X-Git-Tag: v2.6b1~154 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=59475e97399fa7691fab6d01cd8df7db70b0dba6;p=thirdparty%2FPython%2Fcpython.git Backport from py3k: Implement the new buffer interface from pep3118 for ctypes instances. Closes issue #2404. --- diff --git a/Misc/NEWS b/Misc/NEWS index 800d031c7290..9083bbcabe6c 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -72,6 +72,8 @@ Extension Modules Library ------- +- Issue #2404: ctypes objects support the new pep3118 buffer interface + - Patch #2125: Add GetInteger and GetString methods for msilib.Record objects.