pprocess

Changeset

171:77909a86b1de
2015-10-20 Paul Boddie raw files shortlog changelog graph Fixed example names and added changelog note. rel-0-5-2
README.txt (file)
     1.1 --- a/README.txt	Fri Sep 25 16:40:39 2015 +0200
     1.2 +++ b/README.txt	Tue Oct 20 23:16:38 2015 +0200
     1.3 @@ -136,8 +136,8 @@
     1.4  modifications will not be visible in the parent process. The following
     1.5  examples illustrate the problem:
     1.6  
     1.7 -PYTHONPATH=. python examples/simple_mutable.py
     1.8 -PYTHONPATH=. python examples/simple_mutable_queue.py
     1.9 +PYTHONPATH=. python examples/simple_mutation.py
    1.10 +PYTHONPATH=. python examples/simple_mutation_queue.py
    1.11  
    1.12  The former, non-parallel program will display the expected result of the
    1.13  computation, whereas the latter, parallel program will fail to do so. This is
    1.14 @@ -194,6 +194,8 @@
    1.15  
    1.16    * Added examples involving mutable objects and the inability of pprocess to
    1.17      automatically propagate changes to such objects back to parent processes.
    1.18 +  * Added an explanatory section to the tutorial about data exchange between
    1.19 +    processes and the differences from "normal" Python program behaviour.
    1.20  
    1.21  New in pprocess 0.5.1 (Changes since pprocess 0.5)
    1.22  --------------------------------------------------