summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/library/_thread.rst13
-rw-r--r--Modules/_threadmodule.c10
2 files changed, 8 insertions, 15 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:
diff --git a/Modules/_threadmodule.c b/Modules/_threadmodule.c
index 81e8984..fe63c4b 100644
--- a/Modules/_threadmodule.c
+++ b/Modules/_threadmodule.c
@@ -616,8 +616,14 @@ thread__count(PyObject *self)
PyDoc_STRVAR(_count_doc,
"_count() -> integer\n\
\n\
-Return the number of currently running (sub)threads.\n\
-This excludes the main thread.");
+\
+Return the number of currently running Python threads, excluding \n\
+the main thread. The returned number comprises all threads created\n\
+through `start_new_thread()` as well as `threading.Thread`, and not\n\
+yet finished.\n\
+\n\
+This function is meant for internal and specialized purposes only.\n\
+In most applications `threading.enumerate()` should be used instead.");
static PyObject *
thread_stack_size(PyObject *self, PyObject *args)