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 Igor Kozyrenko (ikseek)
Recipients Igor Kozyrenko (ikseek)
Date 2017-06-02.16:01:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1496419316.76.0.0335094522467.issue30554@psf.upfronthosting.co.za>
In-reply-to
Content
If I enumerate attributes on OSError instance with dir
dir(OSError())
I see an 'characters_written' attribute (which is supposed to be defined on BlockingIOError according to docs).
If I try to access it
getattr(OSError(), 'characters_written')
I get an AttributeError
History
Date User Action Args
2017-06-02 16:01:56Igor Kozyrenko (ikseek)setrecipients: + Igor Kozyrenko (ikseek)
2017-06-02 16:01:56Igor Kozyrenko (ikseek)setmessageid: <1496419316.76.0.0335094522467.issue30554@psf.upfronthosting.co.za>
2017-06-02 16:01:56Igor Kozyrenko (ikseek)linkissue30554 messages
2017-06-02 16:01:56Igor Kozyrenko (ikseek)create