Commit fc93bd46 authored by Bup's avatar Bup Committed by Xiang Zhang

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

parent 698865dc
...@@ -15062,7 +15062,7 @@ static PyObject *unicode_iter(PyObject *seq); ...@@ -15062,7 +15062,7 @@ static PyObject *unicode_iter(PyObject *seq);
PyTypeObject PyUnicode_Type = { PyTypeObject PyUnicode_Type = {
PyVarObject_HEAD_INIT(&PyType_Type, 0) PyVarObject_HEAD_INIT(&PyType_Type, 0)
"str", /* tp_name */ "str", /* tp_name */
sizeof(PyUnicodeObject), /* tp_size */ sizeof(PyUnicodeObject), /* tp_basicsize */
0, /* tp_itemsize */ 0, /* tp_itemsize */
/* Slots */ /* Slots */
(destructor)unicode_dealloc, /* tp_dealloc */ (destructor)unicode_dealloc, /* tp_dealloc */
......
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