rustpython 0.1.0

A python interpreter written in rust.
1
2
3
4
5
6
7
8
9
#when name.py is run __name__ should equal to __main__
assert __name__ == "__main__"

from import_name import import_func

#__name__ should be set to import_func
import_func()

assert __name__ == "__main__"