python-csp
python-csp copied to clipboard
python-csp provides python with communicating sequential processes style parallelism
From old Google Code repo: At the Europython sprint people felt that the Sphinx documentation was a better place to put the tutorial. _Comment 1 by project member mount.sarah, Jul...
From old Google Code repo: _Reported by mjanos5, Jan 15, 2012_ http://code.google.com/p/python-csp/wiki/Tutorial problem: typo in: `CSP stands for Communicating Sequential Processes, which is a framework for writing concurrent or program...
_Reported by kwhitefo, Sep 21, 2010_ _What steps will reproduce the problem?_ 1. Download source: hg clone https://python-csp.googlecode.com/hg/ python-csp 2. Open `python-csp/csp/builtins.py` 3. Look at the `GenerateFloats` function: ``` python...
See the thread on the mailing list: http://groups.google.com/group/python-csp/browse_thread/thread/5a6f8ced3f61975d
From old Google Code repo: Think about whether python-csp "syntax" is optimal. The thoughts below are from an ancient email thread, never implemented: One is that I would like to...
From old Google Code repo: Russel had an idea for a new bit of python-csp syntax that would work like this: ``` python with Par() as PAR: P Q R...
From old Google Code repo: See `test/test_builtins.py` Run all tests with `set_debug(True)` turned on. It looks like a reader starts before a writer and the reader does not unblock after...
From old Google Code repo: _Reported by project member [email protected], Jul 27, 2010_ Currently, `csp/os_process.py` and `csp/os_thread.py` share a lot of code, particularly in the classes `Alt`, `Par`, `Seq`, `Guard`,...
From old Google Code repo: readsets and writesets should not be in documentation. _Comment 1 by project member mount.sarah, Jul 24, 2010_ Use Function Annotations: http://www.python.org/dev/peps/pep-3107/ [Thanks to Fabian for...