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 alexandre.vassalotti
Recipients alexandre.vassalotti, qwjqwj, vdupras
Date 2009-04-03.06:03:28
SpamBayes Score 3.1967593e-07
Marked as misclassified No
Message-id <1238738610.15.0.565279386387.issue5345@psf.upfronthosting.co.za>
In-reply-to
Content
This is not a typo. cStringIO.StringIO is a factory function that
returns either a cStringO object (for writing) or cStringI (for
reading). If this behavior causes a problem to you, then consider using
StringIO.StringIO.

Alternatively, you could upgrade to Python 2.7 or 3.0 and use
io.StringIO() which doesn't have this limitation.
History
Date User Action Args
2009-04-03 06:03:30alexandre.vassalottisetrecipients: + alexandre.vassalotti, vdupras, qwjqwj
2009-04-03 06:03:30alexandre.vassalottisetmessageid: <1238738610.15.0.565279386387.issue5345@psf.upfronthosting.co.za>
2009-04-03 06:03:29alexandre.vassalottilinkissue5345 messages
2009-04-03 06:03:28alexandre.vassalotticreate