summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index b85231a..001bdb1 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -3068,15 +3068,11 @@ maybe_dtrace_line(_PyInterpreterFrame *frame,
/* Implement Py_EnterRecursiveCall() and Py_LeaveRecursiveCall() as functions
for the limited API. */
-#undef Py_EnterRecursiveCall
-
int Py_EnterRecursiveCall(const char *where)
{
return _Py_EnterRecursiveCall(where);
}
-#undef Py_LeaveRecursiveCall
-
void Py_LeaveRecursiveCall(void)
{
_Py_LeaveRecursiveCall();