summaryrefslogtreecommitdiffstats
path: root/Doc/includes
diff options
context:
space:
mode:
authorJeroen Demeyer <J.Demeyer@UGent.be>2019-06-02 23:43:13 (GMT)
committerPetr Viktorin <encukou@gmail.com>2019-06-02 23:43:13 (GMT)
commit9e3e06e582accec82eb29cf665c3b4c7d84d2eb0 (patch)
tree81014d35b3964315761366b231ae69d73e473a8c /Doc/includes
parent82eac26a73107ded733110cf11e59e95f41c197e (diff)
downloadcpython-9e3e06e582accec82eb29cf665c3b4c7d84d2eb0.zip
cpython-9e3e06e582accec82eb29cf665c3b4c7d84d2eb0.tar.gz
cpython-9e3e06e582accec82eb29cf665c3b4c7d84d2eb0.tar.bz2
bpo-36974: document PEP 590 (GH-13450)
Diffstat (limited to 'Doc/includes')
-rw-r--r--Doc/includes/typestruct.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/includes/typestruct.h b/Doc/includes/typestruct.h
index 9f47899..9ada03c 100644
--- a/Doc/includes/typestruct.h
+++ b/Doc/includes/typestruct.h
@@ -6,7 +6,7 @@ typedef struct _typeobject {
/* Methods to implement standard operations */
destructor tp_dealloc;
- printfunc tp_print;
+ Py_ssize_t tp_vectorcall_offset;
getattrfunc tp_getattr;
setattrfunc tp_setattr;
PyAsyncMethods *tp_as_async; /* formerly known as tp_compare (Python 2)