On Fri, 31 Dec 2004 16:31:45 GMT, Steven Bethard
<[EMAIL PROTECTED]> wrote:

>py> p = R3('eggs')
>py> i = p.__iter__()
>py> i.next()
>'s'

>or

>py> p = R3('eggs')
>py> i = iter(p)
>py> i.next()
>'s'

And that is precisely what I needed to know. Thanks, to you,
Terry and everyone who took time to look at it.



--
It's a man's life in a Python Programming Association.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to