defvardef.py 95 B

123456789
  1. def test1(i):
  2. def test2(i):
  3. print('in test2', 'var:', i)
  4. test2(i)
  5. test1(1)