在这个问题中,@lazyr 询问以下izip_longest
迭代器代码是如何工作的:
def izip_longest_from_docs(*args, **kwds):
# izip_longest('ABCD', 'xy', fillvalue='-') --> Ax By C- D-
fillvalue = kwds.get('fillvalue')
def sentinel(counter = ([fillvalue]*(len(args)-1)).pop):
yield counter() # yields the fillvalue, or raises IndexError
fillers = repeat(fillvalue)
iters = [chain(it, sentinel(), fillers) for it in args]
try:
for tup in izip(*iters):
yield tup
except IndexError:
pass
当我试图理解它是如何工作的时,我偶然发现了一个问题:“如果在作为参数IndexError
发送到的那些迭代器之一中引发怎么办?”。izip_longest
然后我写了一些测试代码:
from itertools import izip_longest, repeat, chain, izip
def izip_longest_from_docs(*args, **kwds):
# The code is exactly the same as shown above
....
def gen1():
for i in range(5):
yield i
def gen2():
for i in range(10):
if i==8:
raise IndexError #simulation IndexError raised inside the iterator
yield i
for i in izip_longest_from_docs(gen1(),gen2(), fillvalue = '-'):
print('{i[0]} {i[1]}'.format(**locals()))
print('\n')
for i in izip_longest(gen1(),gen2(), fillvalue = '-'):
print('{i[0]} {i[1]}'.format(**locals()))
事实证明,itertools
模块中的功能和izip_longest_from_docs
工作方式不同。
上面代码的输出:
>>>
0 0
1 1
2 2
3 3
4 4
- 5
- 6
- 7
0 0
1 1
2 2
3 3
4 4
- 5
- 6
- 7
Traceback (most recent call last):
File "C:/..., line 31, in <module>
for i in izip_longest(gen1(),gen2(), fillvalue = '-'):
File "C:/... test_IndexError_inside iterator.py", line 23, in gen2
raise IndexError
IndexError
因此,可以清楚地看到,izip_longes
from的代码itertools
确实传播了IndexError
异常(我认为它应该如此),但是izip_longes_from_docs
“吞下了”IndexError
异常,因为它把它作为sentinel
停止迭代的信号。
我的问题是,他们是如何解决模块IndexError
中代码的传播问题的itertools
?