summaryrefslogtreecommitdiffstats
path: root/Lib/multiprocessing
diff options
context:
space:
mode:
authordoko@ubuntu.com <doko@ubuntu.com>2013-05-15 16:06:56 (GMT)
committerdoko@ubuntu.com <doko@ubuntu.com>2013-05-15 16:06:56 (GMT)
commit9df891ca41e98d6b008cbc6ccc738d531dcb42e4 (patch)
treea48cca83fa2e03851d33bce2d4c2597970445f0e /Lib/multiprocessing
parentef535584a941c6e5cada828a118a06f5ddf80e86 (diff)
downloadcpython-9df891ca41e98d6b008cbc6ccc738d531dcb42e4.zip
cpython-9df891ca41e98d6b008cbc6ccc738d531dcb42e4.tar.gz
cpython-9df891ca41e98d6b008cbc6ccc738d531dcb42e4.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):