Skip to content

Commit 6f23007

Browse files
OTheDevpython-sidebar
authored andcommitted
pythongh-101903: Remove obsolete undefs for previously removed macros Py_EnterRecursiveCall and Py_LeaveRecursiveCall (python#101923)
1 parent 75260af commit 6f23007

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Python/ceval.c

-4
Original file line numberDiff line numberDiff line change
@@ -3068,15 +3068,11 @@ maybe_dtrace_line(_PyInterpreterFrame *frame,
30683068
/* Implement Py_EnterRecursiveCall() and Py_LeaveRecursiveCall() as functions
30693069
for the limited API. */
30703070

3071-
#undef Py_EnterRecursiveCall
3072-
30733071
int Py_EnterRecursiveCall(const char *where)
30743072
{
30753073
return _Py_EnterRecursiveCall(where);
30763074
}
30773075

3078-
#undef Py_LeaveRecursiveCall
3079-
30803076
void Py_LeaveRecursiveCall(void)
30813077
{
30823078
_Py_LeaveRecursiveCall();

0 commit comments

Comments
 (0)