From ec13b9322d95a651606219469fc7b7e9c977f248 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sun, 25 Nov 2018 23:56:17 +0100 Subject: bpo-35081: Add Include/internal/pycore_tupleobject.h (GH-10705) Move _PyTuple_ITEMS() to a new header file: Include/internal/pycore_tupleobject.h --- Objects/call.c | 1 + 1 file changed, 1 insertion(+) (limited to 'Objects/call.c') diff --git a/Objects/call.c b/Objects/call.c index ce346c2934..ba2ddcb35b 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" -- cgit v1.2.1