# HG changeset patch # User Paul Boddie # Date 1445375798 -7200 # Node ID 77909a86b1dee6cf2aa74cabc77b77ba578d45e0 # Parent 2cd56ed1e0f7fa6aed00c42b7f271b50d059faf8 Fixed example names and added changelog note. diff -r 2cd56ed1e0f7 -r 77909a86b1de README.txt --- a/README.txt Fri Sep 25 16:40:39 2015 +0200 +++ b/README.txt Tue Oct 20 23:16:38 2015 +0200 @@ -136,8 +136,8 @@ modifications will not be visible in the parent process. The following examples illustrate the problem: -PYTHONPATH=. python examples/simple_mutable.py -PYTHONPATH=. python examples/simple_mutable_queue.py +PYTHONPATH=. python examples/simple_mutation.py +PYTHONPATH=. python examples/simple_mutation_queue.py The former, non-parallel program will display the expected result of the computation, whereas the latter, parallel program will fail to do so. This is @@ -194,6 +194,8 @@ * Added examples involving mutable objects and the inability of pprocess to automatically propagate changes to such objects back to parent processes. + * Added an explanatory section to the tutorial about data exchange between + processes and the differences from "normal" Python program behaviour. New in pprocess 0.5.1 (Changes since pprocess 0.5) --------------------------------------------------