This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author skrah
Recipients BreamoreBoy, amaury.forgeotdarc, mkc, pitrou, skrah
Date 2010-07-09.20:31:16
SpamBayes Score 0.016348245
Marked as misclassified No
Message-id <1278707478.38.0.605568481608.issue5321@psf.upfronthosting.co.za>
In-reply-to
Content
It looks like the error is cleared in Python/pythonrun.c, line 321:

    if (fout != NULL && fout != Py_None) {
        tmp = PyObject_CallMethod(fout, "flush", "");
        if (tmp == NULL)
            PyErr_Clear();
        else
            Py_DECREF(tmp);
    }


Not sure why it isn't handled before that.
History
Date User Action Args
2010-07-09 20:31:18skrahsetrecipients: + skrah, mkc, amaury.forgeotdarc, pitrou, BreamoreBoy
2010-07-09 20:31:18skrahsetmessageid: <1278707478.38.0.605568481608.issue5321@psf.upfronthosting.co.za>
2010-07-09 20:31:17skrahlinkissue5321 messages
2010-07-09 20:31:16skrahcreate