author | Alberto Bertogli
<albertito@blitiri.com.ar> 2008-10-24 03:57:44 UTC |
committer | Alberto Bertogli
<albertito@blitiri.com.ar> 2008-10-24 03:57:44 UTC |
parent | 98d91676516c8259937e38dd73e158364d5980fd |
adatasks.py | +1 | -1 |
configparser.py | +1 | -1 |
contract.py | +1 | -1 |
dataflow.py | +1 | -1 |
lazy.py | +1 | -1 |
pcmp.py | +1 | -1 |
pfunctional.py | +3 | -1 |
tcpmp.py | +1 | -1 |
diff --git a/adatasks.py b/adatasks.py index 461c2d9..57a3771 100644 --- a/adatasks.py +++ b/adatasks.py @@ -1,7 +1,7 @@ """ adatasks - An ada-alike tasks implementation for Python -Alberto Bertogli (albertito@gmail.com) +Alberto Bertogli (albertito@blitiri.com.ar) 3/Jul/2005 """ diff --git a/configparser.py b/configparser.py index 92e9696..820f307 100644 --- a/configparser.py +++ b/configparser.py @@ -2,7 +2,7 @@ """ A simple, pythonic configuration parser. -Alberto Bertogli (albertito@gmail.com) +Alberto Bertogli (albertito@blitiri.com.ar) It parses files of the form: diff --git a/contract.py b/contract.py index ba1a803..0d78aa3 100644 --- a/contract.py +++ b/contract.py @@ -2,7 +2,7 @@ """ Design by contract decorators for Python -Alberto Bertogli (albertito@gmail.com) +Alberto Bertogli (albertito@blitiri.com.ar) 8/Jul/2005 ------------------------------------------- diff --git a/dataflow.py b/dataflow.py index 211c615..9a2356c 100644 --- a/dataflow.py +++ b/dataflow.py @@ -1,7 +1,7 @@ """ dataflow - Objects with dataflow semantics -Alberto Bertogli (albertito@gmail.com) +Alberto Bertogli (albertito@blitiri.com.ar) """ import thread diff --git a/lazy.py b/lazy.py index f49ea31..1ccd1d6 100644 --- a/lazy.py +++ b/lazy.py @@ -1,7 +1,7 @@ """ lazy - Decorators and utilities for lazy evaluation in Python -Alberto Bertogli (albertito@gmail.com) +Alberto Bertogli (albertito@blitiri.com.ar) """ class _LazyWrapper: diff --git a/pcmp.py b/pcmp.py index ada6be4..d2d5f8d 100644 --- a/pcmp.py +++ b/pcmp.py @@ -1,7 +1,7 @@ """ pcmp - Parent-Child Message Passing -Alberto Bertogli (albertito@gmail.com) +Alberto Bertogli (albertito@blitiri.com.ar) ------------------------------------------ This module implements a bidirectional channel with the Channel class, which diff --git a/pfunctional.py b/pfunctional.py index c987439..95e3603 100644 --- a/pfunctional.py +++ b/pfunctional.py @@ -1,6 +1,8 @@ """ -Paralell implementation of some functional functions. +Paralell implementation of some functional functions +Alberto Bertogli (albertito@blitiri.com.ar) +---------------------------------------------------- The functions work by partitioning the sequence passed to them, and running the function over the items of each part in paralell. The number of threads to diff --git a/tcpmp.py b/tcpmp.py index 448401e..a4f8978 100644 --- a/tcpmp.py +++ b/tcpmp.py @@ -1,7 +1,7 @@ """ tcpmp - TCP Message Passing -Alberto Bertogli (albertito@gmail.com) +Alberto Bertogli (albertito@blitiri.com.ar) ------------------------------------------ This module implements a bidirectional channel with the Channel class, which