Issue1333889

classification
Title: itertools module missing (C extension in CPython)
Type: Severity: normal
Components: Library Versions:
Milestone:
process
Status: closed Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: fwierzbicki, scoder
Priority: normal Keywords:

Created on 2005-10-21.08:37:22 by scoder, last changed 2006-05-14.03:15:59 by fwierzbicki.

Files
File name Uploaded Description Edit Remove
itertools.py scoder, 2005-10-21.08:37:22 pure Python implementation of itertools from CPython doc
Messages
msg1056 (view) Author: Stefan Behnel (scoder) Date: 2005-10-21.08:37:22
I found that the current CVS version of Jython misses
the itertools package (which CPython implements in C),
so I grabbed the descriptive implementation from the
CPython 2.4.2 documentation and put it into a module. I
does not completely work, but it rather seems to
trigger bugs in Jython than in the module (I filed a
bug report on that, too). I couldn't run the CPython
test suite on it because of problems with Jython
startup and the CPython 2.4 stdlib (site.py doesn't
load correctly), so I can't be sure everything works.
The module misses the implementation of 'tee()', which
isn't complete in the docs (but which was only added in
2.4, so there shouldn'd be much code that relies on it).
msg1057 (view) Author: Stefan Behnel (scoder) Date: 2005-10-22.18:27:42
Logged In: YES 
user_id=313935

Resubmitted this in the patch section. Sorry for double
submission.
msg1058 (view) Author: Frank Wierzbicki (fwierzbicki) Date: 2006-05-14.03:15:59
Logged In: YES 
user_id=193969

bug also submitted as a patch.  Closing.
History
Date User Action Args
2005-10-21 08:37:22scodercreate