473,782 Members | 2,437 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Peek inside iterator (is there a PEP about this?)


Hi there.

For most use cases I think about, the iterator protocol is more than enough.
However, on a few cases, I've needed some ugly hacks.

Ex 1:

a = iter([1,2,3,4,5]) # assume you got the iterator from a function and
b = iter([1,2,3]) # these two are just examples.

then,

zip(a,b)

has a different side effect from

zip(b,a)

After the excecution, in the first case, iterator a contains just [5], on the
second, it contains [4,5]. I think the second one is correct (the 5 was never
used, after all). I tried to implement my 'own' zip, but there is no way to
know the length of the iterator (obviously), and there is also no way
to 'rewind' a value after calling 'next'.

Ex 2:

Will this iterator yield any value? Like with most iterables, a construct

if iterator:
# do something

would be a very convenient thing to have, instead of wrapping a 'next' callon
a try...except and consuming the first item.

Ex 3:

if any(iterator):
# do something ... but the first true value was already consumed and
# cannot be reused. "Any" cannot peek inside the iterator without
# consuming the value.

Instead,

i1, i2 = tee(iterator)
if any(i1):
# do something with i2

Question/Proposal:

Has there been any PEP regarding the problem of 'peeking' inside an iterator?
Knowing if the iteration will end or not, and/or accessing the next value,
without consuming it? Is there any (simple, elegant) way around it?

Cheers,

--
Luis Zarrabeitia (aka Kyrie)
Fac. de Matemática y Computación, UH.
http://profesores.matcom.uh.cu/~kyrie
Oct 1 '08 #1
5 2289
Luis Zarrabeitia wrote:
For most use cases I think about, the iterator protocol is more than
enough. However, on a few cases, I've needed some ugly hacks.

Ex 1:

a = iter([1,2,3,4,5]) # assume you got the iterator from a function and
b = iter([1,2,3]) # these two are just examples.
Can you provide a concrete use case?
then,

zip(a,b)

has a different side effect from

zip(b,a)

After the excecution, in the first case, iterator a contains just [5], on
the second, it contains [4,5]. I think the second one is correct (the 5
was never used, after all). I tried to implement my 'own' zip, but there
is no way to know the length of the iterator (obviously), and there is
also no way to 'rewind' a value after calling 'next'.

Ex 2:

Will this iterator yield any value? Like with most iterables, a construct

if iterator:
# do something
I don't think this has a chance. By adding a __len__ to some iterators R.
Hettinger once managed to break GvR's code. The BDFL was not amused.
would be a very convenient thing to have, instead of wrapping a 'next'
call on a try...except and consuming the first item.

Ex 3:

if any(iterator):
# do something ... but the first true value was already consumed and
# cannot be reused. "Any" cannot peek inside the iterator without
# consuming the value.
for item in iflter(bool, iterator):
# do something
break

is not that bad.
Instead,

i1, i2 = tee(iterator)
if any(i1):
# do something with i2

Question/Proposal:

Has there been any PEP regarding the problem of 'peeking' inside an
iterator? Knowing if the iteration will end or not, and/or accessing the
next value, without consuming it? Is there any (simple, elegant) way
around it?
Personally I think that Python's choice of EAFP over LBYL is a good one, but
one that cannot easily be reconciled with having peekable iterators. If I
were in charge I'd rather simplify the iterator protocol (scrap send() and
yield expressions) than making it more complex.

Peter
Oct 1 '08 #2
On Oct 1, 10:46 am, Luis Zarrabeitia <ky...@uh.cuwro te:
Hi there.

For most use cases I think about, the iterator protocol is more than enough.
However, on a few cases, I've needed some ugly hacks.

Ex 1:

a = iter([1,2,3,4,5]) # assume you got the iterator from a function and
b = iter([1,2,3]) # these two are just examples.

then,

zip(a,b)

has a different side effect from

zip(b,a)

After the excecution, in the first case, iterator a contains just [5], on the
second, it contains [4,5]. I think the second one is correct (the 5 was never
used, after all). I tried to implement my 'own' zip, but there is no way to
know the length of the iterator (obviously), and there is also no way
to 'rewind' a value after calling 'next'.

Ex 2:

Will this iterator yield any value? Like with most iterables, a construct

if iterator:
# do something

would be a very convenient thing to have, instead of wrapping a 'next' call on
a try...except and consuming the first item.

Ex 3:

if any(iterator):
# do something ... but the first true value was already consumed and
# cannot be reused. "Any" cannot peek inside the iterator without
# consuming the value.

Instead,

i1, i2 = tee(iterator)
if any(i1):
# do something with i2

Question/Proposal:

Has there been any PEP regarding the problem of 'peeking' inside an iterator?
Knowing if the iteration will end or not, and/or accessing the next value,
without consuming it? Is there any (simple, elegant) way around it?
Testing for an empty iterator: http://code.activestate.com/recipes/413614/

There also used to be a more general recipe at the Cookbook but it
seems it has not made it to the revamped site. Thanks to the web
archive, here's a link:
http://web.archive.org/web/200605290.../Recipe/304373

HTH,
George
Oct 1 '08 #3
On Oct 1, 9:46*am, Luis Zarrabeitia <ky...@uh.cuwro te:
Hi there.

For most use cases I think about, the iterator protocol is more than enough.
However, on a few cases, I've needed some ugly hacks.

Ex 1:

a = iter([1,2,3,4,5]) # assume you got the iterator from a function and
b = iter([1,2,3]) * * # these two are just examples.

then,

zip(a,b)

has a different side effect from

zip(b,a)

After the excecution, in the first case, iterator a contains just [5], onthe
second, it contains [4,5]. I think the second one is correct (the 5 was never
used, after all). I tried to implement my 'own' zip, but there is no way to
know the length of the iterator (obviously), and there is also no way
to 'rewind' a value after calling 'next'.

Ex 2:

Will this iterator yield any value? Like with most iterables, a construct

if iterator:
* *# do something

would be a very convenient thing to have, instead of wrapping a 'next' call on
a try...except and consuming the first item.

Ex 3:

if any(iterator):
* *# do something ... but the first true value was already consumed and
* *# cannot be reused. "Any" cannot peek inside the iterator without
* *# consuming the value.

Instead,

i1, i2 = tee(iterator)
if any(i1):
* *# do something with i2

Question/Proposal:

Has there been any PEP regarding the problem of 'peeking' inside an iterator?
Knowing if the iteration will end or not, and/or accessing the next value,
without consuming it? Is there any (simple, elegant) way around it?

Cheers,

--
Luis Zarrabeitia (aka Kyrie)
Fac. de Matemática y Computación, UH.http://profesores.matcom.uh.cu/~kyrie
It wouldn't be that hard to make your own.

a = peekingiter([1,2,3,4,5])
b = peekingiter([1,2,3])

Just don't cross it with typing and get peking duck.
Oct 1 '08 #4
On Wednesday 01 October 2008 01:14:14 pm Peter Otten wrote:
Luis Zarrabeitia wrote:
a = iter([1,2,3,4,5]) # assume you got the iterator from a function and
b = iter([1,2,3]) # these two are just examples.

Can you provide a concrete use case?
I'd like to... but I've refactored away all the examples I had, as soon as I
realized that I didn't know which one was the shortest sequence to put it
first.

But, it went something like this:

===
def do_stuff(tasks, params):
params = iter(params)
for task in tasks:
for partial_task, param in zip(task, params):
pass #blah blah, do stuff here.
print "task completed"
===

Unfortunately that's not the real example (as it is, it shows very bad
programming), but imagine if params and/or tasks were streams beyond your
control (a data stream and a control stream). Note that I wouldn't like a
task or param to be wasted.

I didn't like the idea of changing both the 'iter' and the 'zip' (changing
only one of them wouldn't have worked).
Will this iterator yield any value? Like with most iterables, a construct

if iterator:
# do something

I don't think this has a chance. By adding a __len__ to some iterators R.
Hettinger once managed to break GvR's code. The BDFL was not amused.
Ouch :D
But, no no no. Adding a __len__ to iterators makes little sense (specially
in my example), and adding an optional __len__ that some iterators have and
some don't (the one that can't know their own lengths) would break too many
things, and still, wouldn't solve the problem of knowing if there is a next
element. A __nonzero__() that would move the iterator forward and cache the
result, with a next() that would check the cache before advancing, would be
closer to what I'd like.
if any(iterator):
# do something ... but the first true value was already consumed and
# cannot be reused. "Any" cannot peek inside the iterator without
# consuming the value.

for item in iflter(bool, iterator):
# do something
break
It is not, but (feel free to consider this silly) I don't like breaks. In this
case, you would have to read until the end of the block to know that what you
wanted was an if (if you are lucky you may figure out that you wanted to
simulate an if test).

(Well, I use breaks sometimes, but most of them are because I need to test if
an iterator is empty or not)
Personally I think that Python's choice of EAFP over LBYL is a good one,
but one that cannot easily be reconciled with having peekable iterators. If
I were in charge I'd rather simplify the iterator protocol (scrap send()
and yield expressions) than making it more complex.
Oh, I defend EAFP strongly. On my university LBYL is preferred, so wheneverI
teach python, I have to give strong examples of why I like EAFP.

When the iterator is empty means that there is something wrong, I wouldn't
think of using "if iterator:". That would be masquerading what should be an
exception. However, if "iterator is empty" is meaningful, that case should go
in an "else" clause, rather than "except". Consider if you need to find the
first non-empty iterator from a list (and then sending it to another
function - can't test for emptiness with a "for" there, or one could lose the
first element)

On Wednesday 01 October 2008 04:14:09 pm Terry Reedy wrote:
Interesting observation. Iterators are intended for 'iterate through
once and discard' usages. To zip a long sequence with several short
sequences, either use itertools.chain (short sequences) or put the short
sequences as the first zip arg.
I guess that the use of the word 'rewind' wasn't right. To 'push back' an item
into the iterator would be an ugly hack to not being able to know if it was
there in the first place.

Putting the short sequences first wont help a lot when you cannot know which
sequence is shorter, and chaining all of them could be hard to read at best-
look at the do_stuff function at the beginning of this message.
Knowing if the iteration will end or not, and/or accessing the
next value, without consuming it?
No, it is not possible to do that for some iterators. For example, this
code:
(...)
if you peeked the iterator in advance, the result would be different
compared to the result when you actually need it.
But that's one of the cases where one should know what is doing. Both C# and
Java have iterators that let you know if they are finished before consuming
the item. (I didn't mean to compare, and I like java's more than C#, as
java's iterator also promote the 'use once' design).

This may be dreaming, but if the default iter() constructor returned an object
with a .has_next() or a __nonzero__() attribute (if __iter__() had
a 'has_next', no problem, if it didn't, just wrap it - no problem with
backwards compatibility), functions like zip or self-made zips could make use
of it... Common cases could be solved by having the has_next compute the next
one and save it until the 'next()', and weird cases like your time() example
could define the has_next() as true.

I think that my only objection to this is (beside the similarities with java)
is that it could promote a LBYL style.

--
Luis Zarrabeitia (aka Kyrie)
Fac. de Matemática y Computación, UH.
http://profesores.matcom.uh.cu/~kyrie
Oct 2 '08 #5
Luis Zarrabeitia wrote:
On Wednesday 01 October 2008 01:14:14 pm Peter Otten wrote:
>Luis Zarrabeitia wrote:
a = iter([1,2,3,4,5]) # assume you got the iterator from a function and
b = iter([1,2,3]) # these two are just examples.

Can you provide a concrete use case?

I'd like to... but I've refactored away all the examples I had, as soon as
I realized that I didn't know which one was the shortest sequence to put
it first.

But, it went something like this:

===
def do_stuff(tasks, params):
params = iter(params)
for task in tasks:
for partial_task, param in zip(task, params):
pass #blah blah, do stuff here.
print "task completed"
===

Unfortunately that's not the real example (as it is, it shows very bad
programming), but imagine if params and/or tasks were streams beyond your
control (a data stream and a control stream). Note that I wouldn't like a
task or param to be wasted.
This remains a bit foggy to me. Maybe you are better off with deques than
iterators?
I didn't like the idea of changing both the 'iter' and the 'zip' (changing
only one of them wouldn't have worked).
Will this iterator yield any value? Like with most iterables, a
construct

if iterator:
# do something

I don't think this has a chance. By adding a __len__ to some iterators R.
Hettinger once managed to break GvR's code. The BDFL was not amused.

Ouch :D
But, no no no. Adding a __len__ to iterators makes little sense (specially
in my example), and adding an optional __len__ that some iterators have
and some don't (the one that can't know their own lengths) would break too
many things, and still, wouldn't solve the problem of knowing if there is
a next element. A __nonzero__() that would move the iterator forward and
cache the result, with a next() that would check the cache before
advancing, would be closer to what I'd like.
The problem was that __len__() acts as a fallback for __nonzero__(), see

http://mail.python.org/pipermail/pyt...er/056649.html
if any(iterator):
# do something ... but the first true value was already consumed and
# cannot be reused. "Any" cannot peek inside the iterator without
# consuming the value.

for item in iflter(bool, iterator):
# do something
break

It is not, but (feel free to consider this silly) I don't like breaks. In
this case, you would have to read until the end of the block to know that
what you wanted was an if (if you are lucky you may figure out that you
wanted to simulate an if test).
Ok, make it

for item in islice(ifilter( bool, iterator), 1):
# do something

then ;)
(Well, I use breaks sometimes, but most of them are because I need to test
if an iterator is empty or not)
>Personally I think that Python's choice of EAFP over LBYL is a good one,
but one that cannot easily be reconciled with having peekable iterators.
If I were in charge I'd rather simplify the iterator protocol (scrap
send() and yield expressions) than making it more complex.

Oh, I defend EAFP strongly. On my university LBYL is preferred, so
whenever I teach python, I have to give strong examples of why I like
EAFP.

When the iterator is empty means that there is something wrong, I wouldn't
think of using "if iterator:". That would be masquerading what should be
an exception. However, if "iterator is empty" is meaningful, that case
should go in an "else" clause, rather than "except". Consider if you need
to find the first non-empty iterator from a list (and then sending it to
another function - can't test for emptiness with a "for" there, or one
could lose the first element)
You can do it

def non_empty(itera tors):
for iterator in iterators:
it = iter(iterator)
try:
yield chain([it.next()], it)
except StopIteration:
pass

for it in non_empty(itera tors):
return process(it)

but with iterators as they currently are in Python you better rewrite
process() to handle empty iterators and then write

for it in iterators:
try:
return process(it)
except NothingToProces s: # made up
pass

That's how I understand EAFP. Assume one normal program flow and deal with
problems as they occur.
But that's one of the cases where one should know what is doing. Both C#
and Java have iterators that let you know if they are finished before
consuming the item. (I didn't mean to compare, and I like java's more than
C#, as java's iterator also promote the 'use once' design).
I think that may be the core of your problem. Good code built on Python's
iterators will not resemble the typical Java approach.

Peter
Oct 2 '08 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

19
10645
by: les_ander | last post by:
Hi, suppose I am reading lines from a file or stdin. I want to just "peek" in to the next line, and if it starts with a special character I want to break out of a for loop, other wise I want to do readline(). Is there a way to do this? for example: while 1: line=stdin.peek_nextline()
1
11394
by: kill sunday | last post by:
I'm working on an RPN calculator, and i can't get the input right. I have to use cin.peek() to check the next character and do whatever i need with it. I can't get it to look for a specific type of data. i need it to look and see if its a double, whitespace or an operator. any suggestions? david crean
5
2398
by: Mr A | last post by:
Hi! I'm trying to do the following: emplate <typename Resource> class ResourceManager { public: typedef std::list<Resource*>::iterator Iterator; typedef std::list<Resource*>::const_iterator ConstIterator;
9
5446
by: wizofaus | last post by:
Is the any reason according to the standard that calling tellg() on an std::ifstream after a call to peek() could place the filebuf in an inconsistent state? I think it's a bug in the VC7 dinkumware implementation (and I've reported to them as such), but the following code std::ofstream ofs("test.txt"); ofs << "0123456789"; ofs.close(); std::wifstream ifs("test.txt");
4
4499
by: Manfred Braun | last post by:
Hi All ! I think, there is a bug in the System.Console class related to use the STDIO streams. I am doing a very simple thing in a console-based program named CS Console.In.Peek(); and the program hungs if no parameters were provided on the commandline. If I use simple redirection like "echo "hallo" | cs.exe"
3
2265
by: Gerhard Pfeiffer | last post by:
Hi, I'm trying to implement a data-structure and have an iterator for it. Now I've got a problem impleneting the operator+. I tried to isolate the problem: template<int DIM, typename Tclass data_structure { private: int data; public: class iterator {
4
1984
by: Rares Vernica | last post by:
Hi, How can I save a reference inside a container? For example I have: map<string, unsignedX; I would like to be able to save a reference to a position inside X. For a vector, the reference would be the index inside the vector. For
2
2290
by: Terry Reedy | last post by:
Luis Zarrabeitia wrote: Interesting observation. Iterators are intended for 'iterate through once and discard' usages. To zip a long sequence with several short sequences, either use itertools.chain(short sequences) or put the short sequences as the first zip arg. To test without consuming, wrap the iterator in a trivial-to-write one_ahead or peek class such as has been posted before.
6
4254
by: Pallav singh | last post by:
Hi when we should have Class defined Inside a Class ? can any one give me explanation for it ? Does it is used to Hide some information of Class Data-Member and Function from friend class? class A : public B { private:
0
9639
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10146
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10080
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8967
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7492
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6733
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5509
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3639
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2874
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.