-
Notifications
You must be signed in to change notification settings - Fork 34
Home
Pythonect extends the python api, so that you can create pipes between threads. You can either send everything through the pipes all at once using the -> operator, you can wait until one item has traversed all the pipes before sending the next item through using the | operator.
bin/pythonect
This is the top level program. It initializes the command compiler, then either calls PythonectCommandCompiler or Pythonect Compile. Not sure the difference between them.
setup.py Creates a file with the version number, and has general information about the software
pythonect/eval.py
pythonect/lang.py
This defines the print command, and the statement object. You can call a statement to run it.
pythonect/internal/parser.py
pythonect/internal/lexer.py
pythonect/internal/preprocessor.py