On 13 juil, 12:05, Yosifov Pavel <[EMAIL PROTECTED]> wrote:
(snip)

> def cloneiter( it ):
>     """return (clonable,clone)"""
>     return tee(it)

This might as well be written as

cloneiter  = tee

Or yet better, just remove the above code and s/cloneiter/tee/g in the
remaining...

--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to