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 cbay, ezio.melotti, pitrou, senko, vstinner
Date 2013-07-18.23:38:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1374190732.26.0.0387627076226.issue9177@psf.upfronthosting.co.za>
In-reply-to
Content
The check should be moved into the _checkClosed() method. Example:

def _checkClosed(self):
    io.RawIOBase._checkClosed(self)
    if self._sslobj is None:
        raise ValueError("I/O operation on closed SSL socket")
History
Date User Action Args
2013-07-18 23:38:52vstinnersetrecipients: + vstinner, pitrou, ezio.melotti, cbay, senko
2013-07-18 23:38:52vstinnersetmessageid: <1374190732.26.0.0387627076226.issue9177@psf.upfronthosting.co.za>
2013-07-18 23:38:52vstinnerlinkissue9177 messages
2013-07-18 23:38:52vstinnercreate