4 lines
87 B
Python
4 lines
87 B
Python
# -*- coding: utf-8 -*-
|
|
for i in range(1000):
|
|
exec("def test_func_%d(): pass" % i)
|