File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -3614,7 +3614,7 @@ PyTypeObject PyType_Type = {
3614
3614
sizeof (PyHeapTypeObject ), /* tp_basicsize */
3615
3615
sizeof (PyMemberDef ), /* tp_itemsize */
3616
3616
(destructor )type_dealloc , /* tp_dealloc */
3617
- 0 , /* tp_vectorcall_offset */
3617
+ offsetof( PyTypeObject , tp_vectorcall ), /* tp_vectorcall_offset */
3618
3618
0 , /* tp_getattr */
3619
3619
0 , /* tp_setattr */
3620
3620
0 , /* tp_as_async */
@@ -3629,7 +3629,8 @@ PyTypeObject PyType_Type = {
3629
3629
(setattrofunc )type_setattro , /* tp_setattro */
3630
3630
0 , /* tp_as_buffer */
3631
3631
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC |
3632
- Py_TPFLAGS_BASETYPE | Py_TPFLAGS_TYPE_SUBCLASS , /* tp_flags */
3632
+ Py_TPFLAGS_BASETYPE | Py_TPFLAGS_TYPE_SUBCLASS |
3633
+ _Py_TPFLAGS_HAVE_VECTORCALL , /* tp_flags */
3633
3634
type_doc , /* tp_doc */
3634
3635
(traverseproc )type_traverse , /* tp_traverse */
3635
3636
(inquiry )type_clear , /* tp_clear */
You can’t perform that action at this time.
0 commit comments