diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-10-06 18:35:35 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-10-06 18:35:35 (GMT) |
commit | ef4d286770ab264ffc07c7f25385c1e226f3eb4a (patch) | |
tree | 622d97a119b1e003c6d2eda5ce6364b53fda88cf /Doc/library/multiprocessing.rst | |
parent | fc9adb62fbfa8d2f81f7224afea43557a4fff409 (diff) | |
download | cpython-ef4d286770ab264ffc07c7f25385c1e226f3eb4a.zip cpython-ef4d286770ab264ffc07c7f25385c1e226f3eb4a.tar.gz cpython-ef4d286770ab264ffc07c7f25385c1e226f3eb4a.tar.bz2 |
#10968: commit threading doc changes and corresponding whatsnew entry.
It is unfortunate that the '_' names were not kept as aliases, and that RLock
was not also converted to a class, but it is now too late to change either of
those things for 3.3.
Diffstat (limited to 'Doc/library/multiprocessing.rst')
-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 616b7cd..6c29e3f 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -916,7 +916,7 @@ object -- see :ref:`multiprocessing-managers`. .. class:: Condition([lock]) - A condition variable: a clone of :class:`threading.Condition`. + A condition variable: an alias for :class:`threading.Condition`. If *lock* is specified then it should be a :class:`Lock` or :class:`RLock` object from :mod:`multiprocessing`. |