8 lines
169 B
Python
8 lines
169 B
Python
# CIRCUITPY-CHANGE: micropython does not have this test file
|
|
def gen():
|
|
yield from gen()
|
|
|
|
try:
|
|
print(list(gen()))
|
|
except RuntimeError:
|
|
print("RuntimeError")
|