diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2009-07-22 03:56:36 (GMT) |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2009-07-22 03:56:36 (GMT) |
commit | 2db046dc39fd759242b9803d54884e179d599ebf (patch) | |
tree | 0ce342438340f12d8dd6cb43a02cf434d0cf8a73 /Misc | |
parent | cf76e1ac927cdc14ee321a363e161be24bfff059 (diff) | |
download | cpython-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/NEWS | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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 ------- |