defdef.py 83 B

12345678
  1. def test1():
  2. def test2():
  3. print('in test2')
  4. test2()
  5. test1()