Kaydet (Commit) 22348dc0 authored tarafından Guido van Rossum's avatar Guido van Rossum

The warning about thread still having a frame now only happens in

verbose mode.
üst 8607ae2e
......@@ -149,7 +149,7 @@ void
PyThreadState_Clear(tstate)
PyThreadState *tstate;
{
if (tstate->frame != NULL)
if (Py_VerboseFlag && tstate->frame != NULL)
fprintf(stderr,
"PyThreadState_Clear: warning: thread still has a frame\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment