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.

classification
Title: clarify behavior of StringIO objects when preinitialized
Type: Stage:
Components: Documentation Versions:
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, rhettinger
Priority: normal Keywords: patch

Created on 2005-04-10 18:15 by georg.brandl, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
stringio-diff.patch georg.brandl, 2005-04-10 18:15
Messages (2)
msg48189 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2005-04-10 18:15
This patch clarifies that a StringIO object, when given
a value in the constructor, behaves like a file opened
with mode 'r+': the file pointer is positioned at the
beginning, and write() overwrites the previous string.
msg48190 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2005-04-11 03:09
Logged In: YES 
user_id=80475

Already fixed.
History
Date User Action Args
2022-04-11 14:56:10adminsetgithub: 41842
2005-04-10 18:15:47georg.brandlcreate