diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-30 22:19:09 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-30 22:19:09 (GMT) |
commit | 2c970a2ba23eb578923771922b0da2344385c137 (patch) | |
tree | 7152b974d07d51540bb5052801eb661ee4892841 /Doc/library | |
parent | 161df94b0db778b53276bc54bdb282dfb47ccdb4 (diff) | |
download | cpython-2c970a2ba23eb578923771922b0da2344385c137.zip cpython-2c970a2ba23eb578923771922b0da2344385c137.tar.gz cpython-2c970a2ba23eb578923771922b0da2344385c137.tar.bz2 |
Remove official documentation entry for thread._count() and make the
docstring more descriptive instead.
Diffstat (limited to 'Doc/library')
-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 ac9d1eb..7e8d5c8 100644 --- a/Doc/library/thread.rst +++ b/Doc/library/thread.rst @@ -113,19 +113,6 @@ It defines the following constant and functions: .. versionadded:: 2.5 -.. 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:: 2.7 - - Lock objects have the following methods: |