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 --- Python/getargs.c | 1 + 1 file changed, 1 insertion(+) (limited to 'Python/getargs.c') diff --git a/Python/getargs.c b/Python/getargs.c index 89df29e315..ac8bac3bf5 100644 --- a/Python/getargs.c +++ b/Python/getargs.c @@ -2,6 +2,7 @@ /* New getargs implementation */ #include "Python.h" +#include "pycore_tupleobject.h" #include #include -- cgit v1.2.1