diff options
| author | Mattias Andrée <maandree@operamail.com> | 2014-03-08 03:47:08 +0100 |
|---|---|---|
| committer | Mattias Andrée <maandree@operamail.com> | 2014-03-08 03:47:08 +0100 |
| commit | edf8d9f8e3276ae25debd4b27d85c0d1db53de8f (patch) | |
| tree | f123bab928c5180d2394f10e93753c1a18a18295 | |
| parent | add hashsum (diff) | |
| download | join-python-edf8d9f8e3276ae25debd4b27d85c0d1db53de8f.tar.gz join-python-edf8d9f8e3276ae25debd4b27d85c0d1db53de8f.tar.bz2 join-python-edf8d9f8e3276ae25debd4b27d85c0d1db53de8f.tar.xz | |
typo
Signed-off-by: Mattias Andrée <maandree@operamail.com>
| -rwxr-xr-x | src/test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test.py b/src/test.py index 2538680..bf1acf5 100755 --- a/src/test.py +++ b/src/test.py @@ -118,13 +118,13 @@ def c(value): print(' Not last (but often ordered): %i' % value) time.sleep(1) -print('Testing connurrently') +print('Testing concurrently') concurrently(lambda : c(0), lambda : c(1), lambda : c(2), lambda : c(3)) print(' Last (delayed c:a 1 s)') print() -print('Testing connurrently with @signal and @puresignal') +print('Testing concurrently with @signal and @puresignal') concurrently(signal(lambda : c(0)), signal(lambda : c(1)), puresignal(lambda : c(2)), puresignal(lambda : c(3))) print(' Last (delayed c:a 1 s)') print() |
