1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
--- a/plugins/cfpython/cfpython_archetype.c
+++ b/plugins/cfpython/cfpython_archetype.c
@@ -133,7 +133,7 @@
sizeof(Crossfire_Archetype), /* tp_basicsize*/
0, /* tp_itemsize*/
NULL, /* tp_dealloc*/
- NULL, /* tp_print*/
+ 0, /* tp_vectorcall_offset */
NULL, /* tp_getattr*/
NULL, /* tp_setattr*/
#ifdef IS_PY3K
--- a/plugins/cfpython/cfpython_object.c
+++ b/plugins/cfpython/cfpython_object.c
@@ -2956,7 +2956,7 @@
sizeof(Crossfire_Object), /* tp_basicsize*/
0, /* tp_itemsize*/
Crossfire_Object_dealloc, /* tp_dealloc*/
- NULL, /* tp_print*/
+ 0, /* tp_vectorcall_offset */
NULL, /* tp_getattr*/
NULL, /* tp_setattr*/
#ifdef IS_PY3K
@@ -3040,7 +3040,7 @@
sizeof(Crossfire_Player), /* tp_basicsize*/
0, /* tp_itemsize*/
Crossfire_Player_dealloc, /* tp_dealloc*/
- NULL, /* tp_print*/
+ 0, /* tp_vectorcall_offset */
NULL, /* tp_getattr*/
NULL, /* tp_setattr*/
NULL, /* tp_compare*/
--- a/plugins/cfpython/cfpython_map.c
+++ b/plugins/cfpython/cfpython_map.c
@@ -560,7 +560,7 @@
sizeof(Crossfire_Map), /* tp_basicsize*/
0, /* tp_itemsize*/
Crossfire_Map_dealloc, /* tp_dealloc*/
- NULL, /* tp_print*/
+ 0, /* tp_vectorcall_offset */
NULL, /* tp_getattr*/
NULL, /* tp_setattr*/
#ifdef IS_PY3K
--- a/plugins/cfpython/cfpython_party.c
+++ b/plugins/cfpython/cfpython_party.c
@@ -132,7 +132,7 @@
sizeof(Crossfire_Party), /* tp_basicsize*/
0, /* tp_itemsize*/
NULL, /* tp_dealloc*/
- NULL, /* tp_print*/
+ 0, /* tp_vectorcall_offset */
NULL, /* tp_getattr*/
NULL, /* tp_setattr*/
#ifdef IS_PY3K
--- a/plugins/cfpython/cfpython_region.c
+++ b/plugins/cfpython/cfpython_region.c
@@ -143,7 +143,7 @@
sizeof(Crossfire_Region), /* tp_basicsize*/
0, /* tp_itemsize*/
NULL, /* tp_dealloc*/
- NULL, /* tp_print*/
+ 0, /* tp_vectorcall_offset */
NULL, /* tp_getattr*/
NULL, /* tp_setattr*/
#ifdef IS_PY3K
|