Skip to content

Commit 79305d2

Browse files
committed
Make functions static again to avoid warning
1 parent 46055c1 commit 79305d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Python/ceval.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1706,7 +1706,7 @@ initialize_locals(PyThreadState *tstate, PyFunctionObject *func,
17061706
return -1;
17071707
}
17081708

1709-
void
1709+
static void
17101710
clear_thread_frame(PyThreadState *tstate, _PyInterpreterFrame * frame)
17111711
{
17121712
assert(frame->owner == FRAME_OWNED_BY_THREAD);
@@ -1722,7 +1722,7 @@ clear_thread_frame(PyThreadState *tstate, _PyInterpreterFrame * frame)
17221722
_PyThreadState_PopFrame(tstate, frame);
17231723
}
17241724

1725-
void
1725+
static void
17261726
clear_gen_frame(PyThreadState *tstate, _PyInterpreterFrame * frame)
17271727
{
17281728
assert(frame->owner == FRAME_OWNED_BY_GENERATOR);

0 commit comments

Comments
 (0)