summaryrefslogtreecommitdiffstats
path: root/Lib/multiprocessing
diff options
context:
space:
mode:
authordoko@ubuntu.com <doko@ubuntu.com>2013-05-15 16:08:03 (GMT)
committerdoko@ubuntu.com <doko@ubuntu.com>2013-05-15 16:08:03 (GMT)
commit94fd53ba4ee756f0ff17de83b704147596019345 (patch)
tree0990bda7619732c406722801551e8bbb8114d96f /Lib/multiprocessing
parentbcaddf6382b2e906b47c6c5c8ff849c69abe6441 (diff)
parent9df891ca41e98d6b008cbc6ccc738d531dcb42e4 (diff)
downloadcpython-94fd53ba4ee756f0ff17de83b704147596019345.zip
cpython-94fd53ba4ee756f0ff17de83b704147596019345.tar.gz
cpython-94fd53ba4ee756f0ff17de83b704147596019345.tar.bz2
- Fix typos in the multiprocessing module.
Diffstat (limited to 'Lib/multiprocessing')
-rw-r--r--Lib/multiprocessing/synchronize.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/multiprocessing/synchronize.py b/Lib/multiprocessing/synchronize.py
index 22eabe5..0faca78 100644
--- a/Lib/multiprocessing/synchronize.py
+++ b/Lib/multiprocessing/synchronize.py
@@ -199,7 +199,7 @@ class Condition(object):
num_waiters = (self._sleeping_count._semlock._get_value() -
self._woken_count._semlock._get_value())
except Exception:
- num_waiters = 'unkown'
+ num_waiters = 'unknown'
return '<Condition(%s, %s)>' % (self._lock, num_waiters)
def wait(self, timeout=None):