summaryrefslogtreecommitdiff
path: root/Doc/library/threading.rst
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-04-30 14:53:09 +0200
committerVictor Stinner <victor.stinner@haypocalc.com>2011-04-30 14:53:09 +0200
commitd5c355ccc70d011ef2010537838d9a82e24b2b80 (patch)
tree93cd12a87150e673d0a8b16c04ffcaff16fea3aa /Doc/library/threading.rst
parentfab6c70770c7c895a4dbd898a963e2c52da72c04 (diff)
downloadcpython-git-d5c355ccc70d011ef2010537838d9a82e24b2b80.tar.gz
Issue #11223: Replace threading._info() by sys.thread_info
Diffstat (limited to 'Doc/library/threading.rst')
-rw-r--r--Doc/library/threading.rst24
1 files changed, 0 insertions, 24 deletions
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst
index dd2226d67f..df47045ffb 100644
--- a/Doc/library/threading.rst
+++ b/Doc/library/threading.rst
@@ -175,30 +175,6 @@ This module defines the following functions and objects:
Availability: Windows, systems with POSIX threads.
-.. function:: _info()
-
- Return a dictionary with informations about the thread implementation.
- The ``'name'`` key gives the name of the thread implementation (string):
-
- * ``'nt'``: Windows threads
- * ``'os2'``: OS/2 threads
- * ``'pthread'``: POSIX threads
- * ``'solaris'``: Solaris threads
-
- POSIX threads have two more keys:
-
- * ``'lock_implementation'`` (string): name of the lock
- implementation
-
- * ``'semaphore'``: a lock uses a semaphore
- * ``'mutex+cond'``: a lock uses a mutex and a condition variable
-
- * ``'pthread_version'`` (string, optional): name and version of the pthread
- library
-
- .. versionadded:: 3.3
-
-
This module also defines the following constant:
.. data:: TIMEOUT_MAX