Files
RustPython/extra_tests/snippets/import_target.py
2020-09-13 06:58:57 +09:00

11 lines
146 B
Python

# This is used by import.py; the two should be modified in concert
X = '123'
Y = 'abc'
def func():
return X
def other_func():
return Y