summaryrefslogtreecommitdiff
path: root/Include/compile.h
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-12-25 12:47:50 +0200
committerGitHub <noreply@github.com>2017-12-25 12:47:50 +0200
commit3dfbaf51f0d90646e0414ddbd3b513ee8e5ffe9b (patch)
tree03005e193284d3da6590aa9e4740d2dcfa0e189b /Include/compile.h
parent1b3029ac8370ac76fa9571aef540e10aed0667ff (diff)
downloadcpython-git-3dfbaf51f0d90646e0414ddbd3b513ee8e5ffe9b.tar.gz
bpo-32372: Move __debug__ optimization to the AST level. (#4925)
Diffstat (limited to 'Include/compile.h')
-rw-r--r--Include/compile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/compile.h b/Include/compile.h
index 2e9accf5ed..edfd8bbfac 100644
--- a/Include/compile.h
+++ b/Include/compile.h
@@ -75,7 +75,7 @@ PyAPI_FUNC(PyObject*) _Py_Mangle(PyObject *p, PyObject *name);
#define PY_INVALID_STACK_EFFECT INT_MAX
PyAPI_FUNC(int) PyCompile_OpcodeStackEffect(int opcode, int oparg);
-PyAPI_FUNC(int) _PyAST_Optimize(struct _mod *, PyArena *arena);
+PyAPI_FUNC(int) _PyAST_Optimize(struct _mod *, PyArena *arena, int optimize);
#ifdef __cplusplus
}