[Python-checkins] python/dist/src/Misc NEWS,1.942,1.943
nascheme at users.sourceforge.net
nascheme at users.sourceforge.net
Wed Mar 10 21:42:48 EST 2004
Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2948/Misc
Modified Files:
NEWS
Log Message:
Make buffer objects based on immutable objects (like array) safe.
Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.942
retrieving revision 1.943
diff -C2 -d -r1.942 -r1.943
*** NEWS 8 Mar 2004 18:22:35 -0000 1.942
--- NEWS 11 Mar 2004 02:42:45 -0000 1.943
***************
*** 173,176 ****
--- 173,181 ----
fail caused intermittent errors and odd behavior.
+ - buffer objects based on other objects no longer cache a pointer to
+ the data and the data length. Instead, the appropriate tp_as_buffer
+ method is called as necessary.
+
+
Extension modules
-----------------
More information about the Python-checkins
mailing list