summaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
Diffstat (limited to 'Python')
-rw-r--r--Python/Python-ast.c4
-rw-r--r--Python/bltinmodule.c12
-rw-r--r--Python/symtable.c4
-rw-r--r--Python/traceback.c4
4 files changed, 12 insertions, 12 deletions
diff --git a/Python/Python-ast.c b/Python/Python-ast.c
index 7c8e438658..dc2b1304f1 100644
--- a/Python/Python-ast.c
+++ b/Python/Python-ast.c
@@ -640,10 +640,10 @@ static PyTypeObject AST_type = {
sizeof(AST_object),
0,
(destructor)ast_dealloc, /* tp_dealloc */
- 0, /* tp_print */
+ 0, /* tp_vectorcall_offset */
0, /* tp_getattr */
0, /* tp_setattr */
- 0, /* tp_reserved */
+ 0, /* tp_as_async */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index 48dadcc9d4..56d882d387 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -611,10 +611,10 @@ PyTypeObject PyFilter_Type = {
0, /* tp_itemsize */
/* methods */
(destructor)filter_dealloc, /* tp_dealloc */
- 0, /* tp_print */
+ 0, /* tp_vectorcall_offset */
0, /* tp_getattr */
0, /* tp_setattr */
- 0, /* tp_reserved */
+ 0, /* tp_as_async */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
@@ -1328,10 +1328,10 @@ PyTypeObject PyMap_Type = {
0, /* tp_itemsize */
/* methods */
(destructor)map_dealloc, /* tp_dealloc */
- 0, /* tp_print */
+ 0, /* tp_vectorcall_offset */
0, /* tp_getattr */
0, /* tp_setattr */
- 0, /* tp_reserved */
+ 0, /* tp_as_async */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
@@ -2667,10 +2667,10 @@ PyTypeObject PyZip_Type = {
0, /* tp_itemsize */
/* methods */
(destructor)zip_dealloc, /* tp_dealloc */
- 0, /* tp_print */
+ 0, /* tp_vectorcall_offset */
0, /* tp_getattr */
0, /* tp_setattr */
- 0, /* tp_reserved */
+ 0, /* tp_as_async */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
diff --git a/Python/symtable.c b/Python/symtable.c
index fe6bc9aca4..668cc21b2d 100644
--- a/Python/symtable.c
+++ b/Python/symtable.c
@@ -140,10 +140,10 @@ PyTypeObject PySTEntry_Type = {
sizeof(PySTEntryObject),
0,
(destructor)ste_dealloc, /* tp_dealloc */
- 0, /* tp_print */
+ 0, /* tp_vectorcall_offset */
0, /* tp_getattr */
0, /* tp_setattr */
- 0, /* tp_reserved */
+ 0, /* tp_as_async */
(reprfunc)ste_repr, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
diff --git a/Python/traceback.c b/Python/traceback.c
index 04b52ad768..0463eb6d8c 100644
--- a/Python/traceback.c
+++ b/Python/traceback.c
@@ -192,10 +192,10 @@ PyTypeObject PyTraceBack_Type = {
sizeof(PyTracebackObject),
0,
(destructor)tb_dealloc, /*tp_dealloc*/
- 0, /*tp_print*/
+ 0, /*tp_vectorcall_offset*/
0, /*tp_getattr*/
0, /*tp_setattr*/
- 0, /*tp_reserved*/
+ 0, /*tp_as_async*/
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/