mirror of
https://github.com/python/cpython.git
synced 2025-12-15 21:44:50 +00:00
Remove unnecessary casts in type object initializers.
This commit is contained in:
parent
3987df5adf
commit
347b30042b
20 changed files with 272 additions and 271 deletions
|
|
@ -2788,7 +2788,7 @@ PyTypeObject PyBaseObject_Type = {
|
|||
"object", /* tp_name */
|
||||
sizeof(PyObject), /* tp_basicsize */
|
||||
0, /* tp_itemsize */
|
||||
(destructor)object_dealloc, /* tp_dealloc */
|
||||
object_dealloc, /* tp_dealloc */
|
||||
0, /* tp_print */
|
||||
0, /* tp_getattr */
|
||||
0, /* tp_setattr */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue