diff options
| author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-04-30 14:53:09 +0200 |
|---|---|---|
| committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-04-30 14:53:09 +0200 |
| commit | d5c355ccc70d011ef2010537838d9a82e24b2b80 (patch) | |
| tree | 93cd12a87150e673d0a8b16c04ffcaff16fea3aa /Doc/library/threading.rst | |
| parent | fab6c70770c7c895a4dbd898a963e2c52da72c04 (diff) | |
| download | cpython-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.rst | 24 |
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 |
