[issue8382] cStringIO and StringIO don't behave the same way

2010-04-12 Thread Antoine Pitrou
Antoine Pitrou added the comment: 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' -- nosy: +pitrou priority: -> normal ___ Python tra

[issue8382] cStringIO and StringIO don't behave the same way

2010-04-12 Thread Tarek Ziadé
Changes by Tarek Ziadé : -- title: cStringIO and StringIO doesn't behave the same way -> cStringIO and StringIO don't behave the same way ___ Python tracker ___ _