commit | ec13b9322d95a651606219469fc7b7e9c977f248 | [log] [tgz] |
---|---|---|
author | Victor Stinner <vstinner@redhat.com> | Sun Nov 25 23:56:17 2018 +0100 |
committer | GitHub <noreply@github.com> | Sun Nov 25 23:56:17 2018 +0100 |
tree | 3fe923cfef5fafe9b5cba193b9dc54b8fd3c7bc2 | |
parent | 8ac6539d85b481fc6b5e9145446b07e591b2caba [diff] [blame] |
bpo-35081: Add Include/internal/pycore_tupleobject.h (GH-10705) Move _PyTuple_ITEMS() to a new header file: Include/internal/pycore_tupleobject.h
diff --git a/Objects/call.c b/Objects/call.c index ce346c2..ba2ddcb 100644 --- a/Objects/call.c +++ b/Objects/call.c
@@ -1,6 +1,7 @@ #include "Python.h" #include "pycore_object.h" #include "pycore_pystate.h" +#include "pycore_tupleobject.h" #include "frameobject.h"