diff options
author | Richard Oudkerk <shibturn@gmail.com> | 2013-06-24 19:38:46 (GMT) |
---|---|---|
committer | Richard Oudkerk <shibturn@gmail.com> | 2013-06-24 19:38:46 (GMT) |
commit | 2b310dd8b9993cd5e9068f6ff127ee1e098c75f0 (patch) | |
tree | a251d0bfbd63b4281b7168153d5eb46416d4c4fa /Doc | |
parent | 7b69da72b8e48920697c8bb44165709ec6df6f8c (diff) | |
download | cpython-2b310dd8b9993cd5e9068f6ff127ee1e098c75f0.zip cpython-2b310dd8b9993cd5e9068f6ff127ee1e098c75f0.tar.gz cpython-2b310dd8b9993cd5e9068f6ff127ee1e098c75f0.tar.bz2 |
Fix typo.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/multiprocessing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index c034511..6ea1572 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -525,7 +525,7 @@ Note that one can also create a shared queue by using a manager object -- see :ref:`manager <multiprocessing-managers>`. (1) After putting an object on an empty queue there may be an - infinitessimal delay before the queue's :meth:`~Queue.empty` + infinitesimal delay before the queue's :meth:`~Queue.empty` method returns :const:`False` and :meth:`~Queue.get_nowait` can return without raising :exc:`Queue.Empty`. |