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 laura
Recipients BreamoreBoy, benjamin.peterson, gregory.p.smith, jcon, laura, pitrou, stutzbach
Date 2015-04-27.06:14:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1430115287.24.0.0299250040304.issue9858@psf.upfronthosting.co.za>
In-reply-to
Content
There were originally three methods present in RawIOBase that were not present in PyRawIOBase_Type:

1. readinto
2. write
3. __weakref__

I've created a patch that adds the first two to PyRawIOBase_Type. The python class readinto and write methods raise UnsupportedOperation, so the c methods return a PyExc_NotImplementedError.

The next major question I have is whether we need to implement a __weakref__ method or this should be ignored in the test.
History
Date User Action Args
2015-04-27 06:14:47laurasetrecipients: + laura, gregory.p.smith, pitrou, benjamin.peterson, stutzbach, BreamoreBoy, jcon
2015-04-27 06:14:47laurasetmessageid: <1430115287.24.0.0299250040304.issue9858@psf.upfronthosting.co.za>
2015-04-27 06:14:47lauralinkissue9858 messages
2015-04-27 06:14:47lauracreate