Kaydet (Commit) a1121fa9 authored tarafından Georg Brandl's avatar Georg Brandl

Fix #1494605.

üst bda0744d
...@@ -728,7 +728,8 @@ PyErr_SyntaxLocation(const char *filename, int lineno) ...@@ -728,7 +728,8 @@ PyErr_SyntaxLocation(const char *filename, int lineno)
tmp = PyErr_ProgramText(filename, lineno); tmp = PyErr_ProgramText(filename, lineno);
if (tmp) { if (tmp) {
PyObject_SetAttrString(v, "text", tmp); if (PyObject_SetAttrString(v, "text", tmp))
PyErr_Clear();
Py_DECREF(tmp); Py_DECREF(tmp);
} }
} }
......
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