Skip to content

Commit

Permalink
- Fix typos in the multiprocessing module.
Browse files Browse the repository at this point in the history
  • Loading branch information
doko42 committed May 15, 2013
1 parent ef53558 commit 9df891c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Lib/multiprocessing/synchronize.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def __repr__(self):
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):
Expand Down
6 changes: 4 additions & 2 deletions Misc/NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,16 @@ What's New in Python 3.3.3?
Core and Builtins
-----------------

- Issue #17754: Make ctypes.util.find_library() independent of the locale.

- Issue #17927: Frame objects kept arguments alive if they had been copied into
a cell, even if the cell was cleared.

Library
-------

- Fix typos in the multiprocessing module.

- Issue #17754: Make ctypes.util.find_library() independent of the locale.

- Issue #17968: Fix memory leak in os.listxattr().

Documentation
Expand Down
2 changes: 1 addition & 1 deletion Modules/_multiprocessing/multiprocessing.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ mp_SetError(PyObject *Type, int num)
break;
default:
PyErr_Format(PyExc_RuntimeError,
"unkown error number %d", num);
"unknown error number %d", num);
}
return NULL;
}
Expand Down

0 comments on commit 9df891c

Please sign in to comment.