summaryrefslogtreecommitdiffstats
path: root/Doc/library/threading.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-09-01 13:51:09 (GMT)
committerGeorg Brandl <georg@python.org>2007-09-01 13:51:09 (GMT)
commit55ac8f0f26efdbbcb5cc197f9369d23d50bee908 (patch)
treea0d5b7128c055d8c767652dc3948c3404be06396 /Doc/library/threading.rst
parent1617457cff847fed9fadb01f1acf6ba8bb621726 (diff)
downloadcpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.zip
cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.gz
cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.bz2
Get rid of the remaining versionadded/versionchanged directives.
Diffstat (limited to 'Doc/library/threading.rst')
-rw-r--r--Doc/library/threading.rst7
1 files changed, 0 insertions, 7 deletions
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst
index 92ce02a..a676a1e 100644
--- a/Doc/library/threading.rst
+++ b/Doc/library/threading.rst
@@ -67,8 +67,6 @@ This module defines the following functions and objects:
For more details and extensive examples, see the documentation string of the
:mod:`_threading_local` module.
- .. versionadded:: 2.4
-
.. function:: Lock()
@@ -123,8 +121,6 @@ This module defines the following functions and objects:
The *func* will be passed to :func:`sys.settrace` for each thread, before its
:meth:`run` method is called.
- .. versionadded:: 2.3
-
.. function:: setprofile(func)
@@ -134,8 +130,6 @@ This module defines the following functions and objects:
The *func* will be passed to :func:`sys.setprofile` for each thread, before its
:meth:`run` method is called.
- .. versionadded:: 2.3
-
.. function:: stack_size([size])
@@ -154,7 +148,6 @@ This module defines the following functions and objects:
the suggested approach in the absence of more specific information).
Availability: Windows, systems with POSIX threads.
- .. versionadded:: 2.5
Detailed interfaces for the objects are documented below.