diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-30 22:23:02 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-30 22:23:02 (GMT) |
commit | 9257f5eecea74cb5d4bac858719584b0354b6d5d (patch) | |
tree | d7b9cbf9c8578e6f076ae75e27accb952733c44a /Doc | |
parent | aecd3b77184f5a9a16a26cec39a532a50f1ab191 (diff) | |
download | cpython-9257f5eecea74cb5d4bac858719584b0354b6d5d.zip cpython-9257f5eecea74cb5d4bac858719584b0354b6d5d.tar.gz cpython-9257f5eecea74cb5d4bac858719584b0354b6d5d.tar.bz2 |
Merged revisions 75969 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75969 | antoine.pitrou | 2009-10-30 23:19:09 +0100 (ven., 30 oct. 2009) | 5 lines
Remove official documentation entry for thread._count() and make the
docstring more descriptive instead.
........
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/_thread.rst | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Doc/library/_thread.rst b/Doc/library/_thread.rst index 373b1b0..cb62407 100644 --- a/Doc/library/_thread.rst +++ b/Doc/library/_thread.rst @@ -103,19 +103,6 @@ It defines the following constant and functions: Availability: Windows, systems with POSIX threads. -.. function:: _count() - - Return the number of currently running Python threads, excluding the main - thread. The returned number comprises all threads created through - :func:`start_new_thread` as well as :class:`threading.Thread`, and not - yet finished. - - This function is meant for internal and specialized purposes only. In - most applications :func:`threading.enumerate()` should be used instead. - - .. versionadded:: 3.2 - - Lock objects have the following methods: |