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.22:02:29
SpamBayes Score 0.12610821
Marked as misclassified No
Message-id <1203890550.15.0.0728105867722.issue1986@psf.upfronthosting.co.za>
In-reply-to
Content
oops, stupid me, this a 3.0 issue..., well seems the str() conversion is
done as well on the 3.0 io module:

"""
class StringIO(TextIOWrapper):
   def __init__(self, initial_value="", encoding="utf-8",
                 errors="strict", newline="\n"):
        super(StringIO, self).__init__(BytesIO(),
                                       encoding=encoding,
                                       errors=errors,
                                       newline=newline)
        if initial_value:
            if not isinstance(initial_value, str):
                initial_value = str(initial_value)
"""
History
Date User Action Args
2008-02-24 22:02:30zanellasetspambayes_score: 0.126108 -> 0.12610821
recipients: + zanella, georg.brandl
2008-02-24 22:02:30zanellasetspambayes_score: 0.126108 -> 0.126108
messageid: <1203890550.15.0.0728105867722.issue1986@psf.upfronthosting.co.za>
2008-02-24 22:02:29zanellalinkissue1986 messages
2008-02-24 22:02:29zanellacreate