mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Change tp_size to tp_basicsize in comment and realign the comments (GH-6775)
This commit is contained in:
parent
698865dcbb
commit
fc93bd467e
1 changed files with 38 additions and 38 deletions
|
@ -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 */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue