Change tp_size to tp_basicsize in comment and realign the comments (GH-6775)

This commit is contained in:
Bup 2018-06-19 03:59:55 -05:00 committed by Xiang Zhang
parent 698865dcbb
commit fc93bd467e
1 changed files with 38 additions and 38 deletions

View File

@ -15062,7 +15062,7 @@ static PyObject *unicode_iter(PyObject *seq);
PyTypeObject PyUnicode_Type = {
PyVarObject_HEAD_INIT(&PyType_Type, 0)
"str", /* tp_name */
sizeof(PyUnicodeObject), /* tp_size */
sizeof(PyUnicodeObject), /* tp_basicsize */
0, /* tp_itemsize */
/* Slots */
(destructor)unicode_dealloc, /* tp_dealloc */