diff options
author | Georg Brandl <georg@python.org> | 2009-09-19 12:04:16 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-09-19 12:04:16 (GMT) |
commit | f4da66688007a49284fb14e08bef002c8a2a834b (patch) | |
tree | c28f4e9f154fa2c13c67d9f549625bd6c001f4c4 /Doc | |
parent | 592c58d35656df3ddb73d9dd453e142f3eb4735a (diff) | |
download | cpython-f4da66688007a49284fb14e08bef002c8a2a834b.zip cpython-f4da66688007a49284fb14e08bef002c8a2a834b.tar.gz cpython-f4da66688007a49284fb14e08bef002c8a2a834b.tar.bz2 |
Fix references to threading.enumerate().
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/threading.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index 412000e..1440215 100644 --- a/Doc/library/threading.rst +++ b/Doc/library/threading.rst @@ -33,7 +33,7 @@ This module defines the following functions and objects: activeCount() Return the number of :class:`Thread` objects currently alive. The returned - count is equal to the length of the list returned by :func:`enumerate`. + count is equal to the length of the list returned by :func:`.enumerate`. .. function:: Condition() @@ -321,7 +321,7 @@ impossible to detect the termination of alien threads. Roughly, a thread is alive from the moment the :meth:`start` method returns until its :meth:`run` method terminates. The module function - :func:`enumerate` returns a list of all alive threads. + :func:`.enumerate` returns a list of all alive threads. .. method:: isDaemon() setDaemon() |