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 zanella
Recipients georg.brandl, zanella
Date 2008-02-24.21:57:03
SpamBayes Score 0.14215553
Marked as misclassified No
Message-id <1203890224.53.0.579187302481.issue1986@psf.upfronthosting.co.za>
In-reply-to
Content
I believe you're referring to StringIO, if so, it changes the parameter
received to a string:

"""
class StringIO:
  def __init__(self, buf = ''):
        # Force self.buf to be a string or unicode
        if not isinstance(buf, basestring):
            buf = str(buf)
"""
History
Date User Action Args
2008-02-24 21:57:04zanellasetspambayes_score: 0.142156 -> 0.14215553
recipients: + zanella, georg.brandl
2008-02-24 21:57:04zanellasetspambayes_score: 0.142156 -> 0.142156
messageid: <1203890224.53.0.579187302481.issue1986@psf.upfronthosting.co.za>
2008-02-24 21:57:03zanellalinkissue1986 messages
2008-02-24 21:57:03zanellacreate