[Python-checkins] r65914 - python/trunk/Misc/NEWS

guido.van.rossum python-checkins at python.org
Wed Aug 20 17:01:51 CEST 2008


Author: guido.van.rossum
Date: Wed Aug 20 17:01:50 2008
New Revision: 65914

Log:
News for the tp_flags change.


Modified:
   python/trunk/Misc/NEWS

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Wed Aug 20 17:01:50 2008
@@ -12,6 +12,14 @@
 Core and Builtins
 -----------------
 
+- Issue #1878: Remove Py_TPFLAGS_HAVE_VERSION_TAG from
+  Py_TPFLAGS_DEFAULT when not building the core.  This means 3rd party
+  extensions do not automatically benefit from the class attribute
+  cache; they will have to explicitly add Py_TPFLAGS_HAVE_VERSION_TAG
+  to their tp_flags field if they care.  This is a backwards
+  compatibility feature; in 3.0, all types will use the cache by
+  default.
+
 - Keyword arguments can now follow starred arguments. (``f(a, *args,
   keyword=23)`` is now valid syntax.)
 


More information about the Python-checkins mailing list