/Python_FE

Primary LanguagePython

Read me

Writing a Python front end for a python compiler

link

New things that I learned

variable type hint

you can also type hint variables like:

    my_nuber: int = 1234
    my_name: str = 'hoseung'

Pytest

you can do either $ pytest or python -m pytest. The latter includes the current directory in the sys.path so that your test script can import local modules without installing it.