Issue1505131

classification
Title: 2.3 cStringIO iter fix
Type: Severity: normal
Components: None Versions:
Milestone:
process
Status: closed Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: cgroves
Priority: normal Keywords: patch

Created on 2006-06-13.02:12:05 by cgroves, last changed 2006-07-20.00:54:49 by cgroves.

Files
File name Uploaded Description Edit Remove
cStringIOiter.diff cgroves, 2006-06-13.02:12:06
Messages
msg2500 (view) Author: Charlie Groves (cgroves) Date: 2006-06-13.02:12:05
The cStringIO iter test broke in 2.3 because it
expected the iter to be equal to the cStringIO object.
 cStringIO now extends PyIterator instead of PyObject
and its __next__ method was replaced by an __iternext__
method.

test_StringIO.py passes now, but it requires
test_support.py from Python 2.3 to run  The one in
Jython's svn doesn't run multiple test classes.  
msg2501 (view) Author: Charlie Groves (cgroves) Date: 2006-07-20.00:54:49
Logged In: YES 
user_id=1174327

Commited in r2850
History
Date User Action Args
2006-06-13 02:12:05cgrovescreate