[issue8121] Typo in cStringIO

2010-03-12 Thread Jean-Michel Fauth
Jean-Michel Fauth added the comment: Wow! I never been aware of this (documentation, dir(), __doc__) Indeed: >>> cStringIO.StringIO() >>> cStringIO.StringIO('abc') Sorry for the noise. -- ___ Python tracker ___

[issue8121] Typo in cStringIO

2010-03-12 Thread Georg Brandl
Georg Brandl added the comment: That name is actually correct. cStringIO features two different types, depending on whether you call cStringIO.StringIO() with or without an argument. One is called "StringI", the other "StringO". -- nosy: +georg.brandl resolution: -> invalid status:

[issue8121] Typo in cStringIO

2010-03-12 Thread Jean-Michel Fauth
New submission from Jean-Michel Fauth : There is a malformed string in the module cStringIO. StringI <--> StringIO >>> sys.version 2.6.4 (r264:75708, Oct 26 2009, 08:23:19) [MSC v.1500 32 bit (Intel)] >>> StringIO.StringIO('123') >>> cStringIO.StringIO('123') >>> -- components: None