summaryrefslogtreecommitdiff
path: root/Python/compile.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2018-09-12 10:33:44 -0700
committerBenjamin Peterson <benjamin@python.org>2018-09-12 10:40:45 -0700
commitb21f3d99eeee630889b5d235cd3af646d620a6a9 (patch)
treea44be668e2beaee79da3ece92f1ac05e0ed4a7a6 /Python/compile.c
parentf52237400b9960d434c5d0676a3479b8c1e8c869 (diff)
downloadcpython-git-benjamin-pyapi.tar.gz
closes bpo-34646: Remove PyAPI_* macros from declarations.benjamin-pyapi
Diffstat (limited to 'Python/compile.c')
-rw-r--r--Python/compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 3528670ef6..c6a667c29e 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -5550,7 +5550,7 @@ assemble(struct compiler *c, int addNone)
}
#undef PyAST_Compile
-PyAPI_FUNC(PyCodeObject *)
+PyCodeObject *
PyAST_Compile(mod_ty mod, const char *filename, PyCompilerFlags *flags,
PyArena *arena)
{