summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2009-07-22 03:56:36 (GMT)
committerAlexandre Vassalotti <alexandre@peadrop.com>2009-07-22 03:56:36 (GMT)
commit2db046dc39fd759242b9803d54884e179d599ebf (patch)
tree0ce342438340f12d8dd6cb43a02cf434d0cf8a73 /Misc
parentcf76e1ac927cdc14ee321a363e161be24bfff059 (diff)
downloadcpython-2db046dc39fd759242b9803d54884e179d599ebf.zip
cpython-2db046dc39fd759242b9803d54884e179d599ebf.tar.gz
cpython-2db046dc39fd759242b9803d54884e179d599ebf.tar.bz2
Issue #6151: Make PyDescr_COMMON conform to standard C.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS8
1 files changed, 7 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 01ca4d1..da7fa5b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -36,7 +36,12 @@ Core and Builtins
C-API
-----
-- Issue #6405: Remove duplicatet type declarations in descrobject.h.
+- Issue #6151: Made PyDescr_COMMON conform to standard C (like PyObject_HEAD
+ in PEP 3123). The PyDescr_TYPE and PyDescr_NAME macros should be
+ should used for accessing the d_type and d_name members of structures
+ using PyDescr_COMMON.
+
+- Issue #6405: Remove duplicate type declarations in descrobject.h.
- The code flags for old __future__ features are now available again.
@@ -49,6 +54,7 @@ C-API
- Issue #1419652: Change the first argument to PyImport_AppendInittab() to
``const char *`` as the string is stored beyond the call.
+
Library
-------