[Webkit-unassigned] [Bug 37765] REGRESSION(57531): the commit-queue still hates Tor Arne Vestbø

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Apr 19 15:02:18 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=37765





--- Comment #26 from Eric Seidel <eric at webkit.org>  2010-04-19 15:02:16 PST ---
You're right,  StringIO(unicode()) seems to work fine:

>>> import StringIO
>>> tor = u"Vestb\u00f8"
>>> print tor
Vestbø
>>> tor_io =StringIO.StringIO(tor)
>>> read_tor =tor_io.read()
>>> print read_tor
Vestbø
>>> print read_tor.__class__
<type 'unicode'>

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list