[Patches] [ python-Patches-603667 ] reiter() builtin

noreply@sourceforge.net noreply@sourceforge.net
Mon, 02 Sep 2002 12:57:39 -0700


Patches item #603667, was opened at 2002-09-02 19:57
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=305470&aid=603667&group_id=5470

Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Oren Tirosh (orenti)
Assigned to: Nobody/Anonymous (nobody)
Summary: reiter() builtin

Initial Comment:
The reiter() function is similar to iter() but expects
a re-iterable object as an argument. If the
object is already an iterator a TypeError will be raised.

Example:

def f(a, b):
    for i in a:
        for j in reiter(b):
           do_something_with(i, j)

This function will raise an error if it is passed a
non-reiterable object as the second argument.


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=305470&aid=603667&group_id=5470