次のコード スニペットを検討してください (Python 2.7 では非ローカル キーワードを使用できないため、グローバルを使用していたことに注意してください)。
def foo(L,K):
global count
count = 0
def bar(f,L):
global count
for e in L:
if e - f == K or f - e == K: count += 1
yield e
try:
while True:
L = bar(L.next(),L)
except StopIteration:
return count
count=0
print foo((int(e) for e in some_string.split()),some_number)
どこ
some_string: A space delimited integers
some_number: An integer
の場合len(some_string) = 4000
、上記のコードはエラーで失敗します
RuntimeError: maximum recursion depth exceeded while calling a Python object
内部でネストされたジェネレーターが再帰として実装されているためですか?