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 vstinner
Recipients ZackerySpytz, miss-islington, nedbat, scoder, serhiy.storchaka, vstinner
Date 2018-07-17.11:37:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1531827446.24.0.56676864532.issue34068@psf.upfronthosting.co.za>
In-reply-to
Content
Python 2.7 also has the io module: it may be good to backport the change to Python 2.7 as well, no? I see the same bug in 2.7:

    res = PyObject_CallMethodObjArgs(self, _PyIO_str_flush, NULL);
    PyObject_SetAttrString(self, "__IOBase_closed", Py_True);
    if (res == NULL) {
        return NULL;
    }
History
Date User Action Args
2018-07-17 11:37:26vstinnersetrecipients: + vstinner, scoder, nedbat, serhiy.storchaka, ZackerySpytz, miss-islington
2018-07-17 11:37:26vstinnersetmessageid: <1531827446.24.0.56676864532.issue34068@psf.upfronthosting.co.za>
2018-07-17 11:37:26vstinnerlinkissue34068 messages
2018-07-17 11:37:26vstinnercreate