Kaydet (Commit) cc7e23ac authored tarafından Martin v. Löwis's avatar Martin v. Löwis

Issue #11134: Add missing fields to typeslots.h.

Reviewed by Georg Brandl.
üst 69168064
...@@ -71,3 +71,6 @@ ...@@ -71,3 +71,6 @@
#define Py_tp_setattro 69 #define Py_tp_setattro 69
#define Py_tp_str 70 #define Py_tp_str 70
#define Py_tp_traverse 71 #define Py_tp_traverse 71
#define Py_tp_members 72
#define Py_tp_getset 73
#define Py_tp_free 74
...@@ -10,6 +10,8 @@ What's New in Python 3.2? ...@@ -10,6 +10,8 @@ What's New in Python 3.2?
Core and Builtins Core and Builtins
----------------- -----------------
- Issue #11134: Add missing fields to typeslots.h.
- Issue #11135: Remove redundant doc field from PyType_Spec. - Issue #11135: Remove redundant doc field from PyType_Spec.
- Issue #11067: Add PyType_GetFlags, to support PyUnicode_Check - Issue #11067: Add PyType_GetFlags, to support PyUnicode_Check
......
...@@ -70,3 +70,6 @@ offsetof(PyHeapTypeObject, ht_type.tp_setattr), ...@@ -70,3 +70,6 @@ offsetof(PyHeapTypeObject, ht_type.tp_setattr),
offsetof(PyHeapTypeObject, ht_type.tp_setattro), offsetof(PyHeapTypeObject, ht_type.tp_setattro),
offsetof(PyHeapTypeObject, ht_type.tp_str), offsetof(PyHeapTypeObject, ht_type.tp_str),
offsetof(PyHeapTypeObject, ht_type.tp_traverse), offsetof(PyHeapTypeObject, ht_type.tp_traverse),
offsetof(PyHeapTypeObject, ht_type.tp_members),
offsetof(PyHeapTypeObject, ht_type.tp_getset),
offsetof(PyHeapTypeObject, ht_type.tp_free),
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment