pythonect icon indicating copy to clipboard operation
pythonect copied to clipboard

A general-purpose dataflow programming language based on Python, written in Python

Results 7 pythonect issues
Sort by recently updated
recently updated
newest added

There is a small typo in doc/tutorial/controlflow.rst. Should read `evaluated` rather than `evaulated`. Semi-automated pull request generated by https://github.com/timgates42/meticulous/blob/master/docs/NOTE.md

Hello, I am a newbie both to pythonect and python. I am just trying to get pythonect up and running on plain Ubuntu 18.04, never used python before. Whatever I...

AFAICT all the examples in the documentation send results to `print`. How can I save results? For example, in Pythonect 0.6 interpreter using Python 2.7.12: ``` a = [1,2,3] [2,3]...

Test script ``` #!/usr/bin/python2 import pythonect print pythonect.parse('"asdf" -> print'), ``` Results with 0.5.0: ``` $ ./test.py [[['->', '"asdf"'], [None, 'print_']]] ``` Results with 0.6.0: ``` $ ./test.py ```

Tested with Python 3.5, should work with 3.4 too. Added six as a new dependency. All tests passed on both Python 2.7.10 and 3.5.0.

``` >>> [x=1, x=1] -> x -> print : 1 : 1 [1, 1] >>> x 1 >>> [x=1, x=2] -> x -> print : 1 : 2 [1, 2]...

bug