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 steverpalmer
Recipients steverpalmer
Date 2019-01-29.09:18:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1548753520.89.0.970608711782.issue35848@roundup.psfhosted.org>
In-reply-to
Content
class io.IOBase states "Even though IOBase does not declare read(), readinto(), or write() because their signatures will vary, implementations and clients should consider those methods part of the interface. Also, implementations may raise a ValueError (or UnsupportedOperation) when operations they do not support are called."  However, even though class io.TextIOBase is described as inheriting from io.IOBase, a call to readinto method returns AttributeError exception indicating no readinto attribute, inconsistent with the documentation.
History
Date User Action Args
2019-01-29 09:18:44steverpalmersetrecipients: + steverpalmer
2019-01-29 09:18:40steverpalmersetmessageid: <1548753520.89.0.970608711782.issue35848@roundup.psfhosted.org>
2019-01-29 09:18:40steverpalmerlinkissue35848 messages
2019-01-29 09:18:40steverpalmercreate