[Python-checkins] r74953 - python/trunk/Doc/library/threading.rst

georg.brandl python-checkins at python.org
Sat Sep 19 14:04:16 CEST 2009


Author: georg.brandl
Date: Sat Sep 19 14:04:16 2009
New Revision: 74953

Log:
Fix references to threading.enumerate().

Modified:
   python/trunk/Doc/library/threading.rst

Modified: python/trunk/Doc/library/threading.rst
==============================================================================
--- python/trunk/Doc/library/threading.rst	(original)
+++ python/trunk/Doc/library/threading.rst	Sat Sep 19 14:04:16 2009
@@ -33,7 +33,7 @@
               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 @@
 
       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()


More information about the Python-checkins mailing list