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 pitrou
Recipients pitrou, tarek
Date 2010-04-13.00:05:13
SpamBayes Score 0.0020542312
Marked as misclassified No
Message-id <1271117115.76.0.683104565485.issue8382@psf.upfronthosting.co.za>
In-reply-to
Content
Probably not. I guess an implicit str() is done on the argument given to write():

>>> s = StringIO()
>>> s.write((1,2))
>>> s.write(3)
>>> s.getvalue()
'(1, 2)3'
History
Date User Action Args
2010-04-13 00:05:15pitrousetrecipients: + pitrou, tarek
2010-04-13 00:05:15pitrousetmessageid: <1271117115.76.0.683104565485.issue8382@psf.upfronthosting.co.za>
2010-04-13 00:05:13pitroulinkissue8382 messages
2010-04-13 00:05:13pitroucreate