在这段代码中,为什么 using 会for
导致 noStopIteration
或者for
循环捕获所有异常然后静默退出?在这种情况下,为什么我们有多余的return
?? 或者是由以下
raise StopIteration
原因引起的:return None
?
#!/usr/bin/python3.1
def countdown(n):
print("counting down")
while n >= 9:
yield n
n -= 1
return
for x in countdown(10):
print(x)
c = countdown(10)
next(c)
next(c)
next(c)
假设StopIteration
被触发:return None
。什么时候GeneratorExit
生成?
def countdown(n):
print("Counting down from %d" % n)
try:
while n > 0:
yield n
n = n - 1
except GeneratorExit:
print("Only made it to %d" % n)
如果我手动执行:
c = countdown(10)
c.close() #generates GeneratorExit??
在这种情况下,为什么我看不到回溯?