[issue8466] typo in tp_name of cStringIO

2010-04-20 Thread Anthon van der Neut
New submission from Anthon van der Neut ant...@mnt.org: if you execute the following code from cStringIO import StringIO x = StringIO() x.get_value() you will see that the AttributeError line has a typo it displays 'cStringIO.StringO' instead of 'cStringIO.StringIO' this error is in line

[issue8466] typo in tp_name of cStringIO

2010-04-20 Thread Eric Smith
Eric Smith e...@trueblade.com added the comment: From issue 8121: 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: +eric.smith