6 lines
100 B
Python
6 lines
100 B
Python
from __future__ import annotations
|
|
|
|
|
|
for i in range(1000):
|
|
exec("def test_func_%d(): pass" % i)
|