summaryrefslogtreecommitdiffstats
path: root/Doc/library/imp.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/imp.rst')
-rw-r--r--Doc/library/imp.rst5
1 files changed, 0 insertions, 5 deletions
diff --git a/Doc/library/imp.rst b/Doc/library/imp.rst
index 7943604..7b8133b 100644
--- a/Doc/library/imp.rst
+++ b/Doc/library/imp.rst
@@ -116,15 +116,12 @@ This module provides an interface to the mechanisms used to implement the
be used by import hooks to ensure thread-safety when importing modules. On
platforms without threads, this function does nothing.
- .. versionadded:: 2.3
-
.. function:: release_lock()
Release the interpreter's import lock. On platforms without threads, this
function does nothing.
- .. versionadded:: 2.3
The following constants with integer values, defined in this module, are used to
indicate the search result of :func:`find_module`.
@@ -265,8 +262,6 @@ around for backward compatibility:
This method always returns ``None``, indicating that the requested module could
not be found.
- .. versionadded:: 2.5
-
.. _examples-imp: