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 jcon
Recipients benjamin.peterson, daniel.urban, jcon, pitrou, stutzbach
Date 2011-05-04.23:06:16
SpamBayes Score 0.00038180055
Marked as misclassified No
Message-id <1304550380.39.0.0432443143928.issue9971@psf.upfronthosting.co.za>
In-reply-to
Content
I am new to the community but hoping to start contributing or at least following issues and learning :) 

I'm looking at bufferediobase_readinto(). What I haven't yet figured out is why .readinto() is (currently) implemented at this layer of the hierarchy. You have to have a raw read buffer available to read from and I'm not sure how one would acquire that from here (without calling .read() or something that has been overridden and knows about the raw buffer).

I feel like bufferediobase_readinto() should return unsupported. Also readinto(), in theory, is lower level than read. if read isn't implemented at this layer why is readinto()?

With a little direction, I would be interested in helping w/a patch.
History
Date User Action Args
2011-05-04 23:06:20jconsetrecipients: + jcon, pitrou, benjamin.peterson, stutzbach, daniel.urban
2011-05-04 23:06:20jconsetmessageid: <1304550380.39.0.0432443143928.issue9971@psf.upfronthosting.co.za>
2011-05-04 23:06:17jconlinkissue9971 messages
2011-05-04 23:06:16jconcreate