diff options
author | Richard Oudkerk <shibturn@gmail.com> | 2013-06-24 19:38:22 (GMT) |
---|---|---|
committer | Richard Oudkerk <shibturn@gmail.com> | 2013-06-24 19:38:22 (GMT) |
commit | 66e0a04d2e7d4744db83058568a326db2fa8e87e (patch) | |
tree | eef31f53a36861beca87a9ff85a1d8e88559b8ff /Doc | |
parent | 2cc73e8e58ddc9c99c790c4cf4afaadc418d4d9d (diff) | |
download | cpython-66e0a04d2e7d4744db83058568a326db2fa8e87e.zip cpython-66e0a04d2e7d4744db83058568a326db2fa8e87e.tar.gz cpython-66e0a04d2e7d4744db83058568a326db2fa8e87e.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 bace92a..3f368a3 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -496,7 +496,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`. |