Terry J. Reedy <tjre...@udel.edu> added the comment:

I think this is the wrong patch for reasons given below.
The example should be replaced instead.

Readline is documented as returning '' at EOF for text files.
Iter(func,sentinel) is documented as calling func until sentinel is returned. 
If that never happens, it never stops. That makes it dangerous unless one KNOWS 
for sure that the sentinel WILL be returned or is willing to continue 
indefinitely. I think a sentence should be added to the doc to warn about this.

So I consider the premise of the example, "One useful application of the second 
form of iter() is to read lines of a file until a certain line is reached.", to 
be somewhat dubious. The example could be considered instead to be an example 
of when NOT to use the second form. This application should better be written 
to avoid a possible infinite loop as

with open(name) as fp:
  for line in fp:
    if line == sentinel:
      break
    process(line)

I think a better example would be (3.2 version, use raw_input for 2.7):

def my_input():
    return input("Enter data or return to stop: ")
for data in iter(my_input, ''):
    process(data)

Your alternative also works, but the above is something one might actually do. 
Even that is hardly much better than:

while True:
  data = input("Enter data or return to stop}
  if not data: break
  process data

----------
nosy: +terry.reedy

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue11163>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to