mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Fix misleading mentions of tp_size in comments (GH-9093)
Many type object initializations labeled a field "tp_size" in the comment, but the name of that field is tp_basicsize.
This commit is contained in:
parent
d545869d08
commit
0e0bc4e221
15 changed files with 21 additions and 21 deletions
|
@ -398,7 +398,7 @@ py_blake2s_dealloc(PyObject *self)
|
|||
PyTypeObject PyBlake2_BLAKE2sType = {
|
||||
PyVarObject_HEAD_INIT(NULL, 0)
|
||||
"_blake2.blake2s", /* tp_name */
|
||||
sizeof(BLAKE2sObject), /* tp_size */
|
||||
sizeof(BLAKE2sObject), /* tp_basicsize */
|
||||
0, /* tp_itemsize */
|
||||
py_blake2s_dealloc, /* tp_dealloc */
|
||||
0, /* tp_print */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue