classification
Title: Add readinto method to StringIO and cStringIO
Type: Stage:
Components: Library (Lib) Versions: Python 2.6
process
Status: closed Resolution: rejected
Dependencies: Superseder:
Assigned To: Nosy List: belopolsky, brett.cannon
Priority: normal Keywords: patch

Created on 2006-08-13 03:16 by belopolsky, last changed 2006-08-24 23:04 by brett.cannon. This issue is now closed.

Files
File name Uploaded Description Edit
readinto-patch.diff belopolsky, 2006-08-13 03:16 diff against revision 51240
Messages (2)
msg50876 - (view) Author: Alexander Belopolsky (belopolsky) (Python committer) Date: 2006-08-13 03:16
Added a 'readonly' flag to buffer object constructor (needed to implement 
StringIO.readinto).
msg50877 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2006-08-24 23:04
Logged In: YES 
user_id=357491

The file object's readinto method is not meant for public
use, so adding the method to StringIO is not a good idea. 
Sorry.

Closing as rejected.
History
Date User Action Args
2006-08-13 03:16:10belopolskycreate