]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Issue #10914: Py_NewInterpreter() uses PyErr_PrintEx(0)
authorVictor Stinner <victor.stinner@haypocalc.com>
Tue, 26 Apr 2011 22:20:27 +0000 (00:20 +0200)
committerVictor Stinner <victor.stinner@haypocalc.com>
Tue, 26 Apr 2011 22:20:27 +0000 (00:20 +0200)
commitc40a350db0f16c678273ee715fe7c70c431360a1
tree482500d7500f786e4cd5f0fbc38f38d7e1bb4c91
parent66299a49f0f5b3aab6ceed6cbdf94a6b89b70328
Issue #10914: Py_NewInterpreter() uses PyErr_PrintEx(0)

... instead of PyErr_Print() because we don't need to set sys attributes,
the sys module is destroyed just after printing the error.
Python/pythonrun.c