diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-05-08 18:55:02 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-05-08 18:55:02 (GMT) |
commit | d7cce26f7c71e3b2ba14198e93b28c4054bd7aea (patch) | |
tree | b11745b87d682e4c094021ecfbea0b8514df455b /Doc/library/threading.rst | |
parent | 39143f8156e7423842f073c868b8d03eb649ce26 (diff) | |
download | cpython-d7cce26f7c71e3b2ba14198e93b28c4054bd7aea.zip cpython-d7cce26f7c71e3b2ba14198e93b28c4054bd7aea.tar.gz cpython-d7cce26f7c71e3b2ba14198e93b28c4054bd7aea.tar.bz2 |
Remove the mutex module.
Diffstat (limited to 'Doc/library/threading.rst')
-rw-r--r-- | Doc/library/threading.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index 3f62e69..dd67d48 100644 --- a/Doc/library/threading.rst +++ b/Doc/library/threading.rst @@ -8,7 +8,7 @@ This module constructs higher-level threading interfaces on top of the lower level :mod:`thread` module. -See also the :mod:`mutex` and :mod:`Queue` modules. +See also the :mod:`Queue` module. The :mod:`dummy_threading` module is provided for situations where :mod:`threading` cannot be used because :mod:`thread` is missing. |