diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-09-13 01:30:04 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-09-13 01:30:04 (GMT) |
commit | c7b1cfa4633b351d0442437f30a9263e104261e2 (patch) | |
tree | e6e2089d831824078f1a35d20058b69d08a6cd2c /Doc/library/imp.rst | |
parent | c985f1f0134c0dbbdf4a427b477698ab28d87806 (diff) | |
download | cpython-c7b1cfa4633b351d0442437f30a9263e104261e2.zip cpython-c7b1cfa4633b351d0442437f30a9263e104261e2.tar.gz cpython-c7b1cfa4633b351d0442437f30a9263e104261e2.tar.bz2 |
remove less complete of duplicate docs
Diffstat (limited to 'Doc/library/imp.rst')
-rw-r--r-- | Doc/library/imp.rst | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Doc/library/imp.rst b/Doc/library/imp.rst index 3909c0f..ec86552 100644 --- a/Doc/library/imp.rst +++ b/Doc/library/imp.rst @@ -190,19 +190,6 @@ This module provides an interface to the mechanisms used to implement the continue to use the old class definition. The same is true for derived classes. -.. function:: acquire_lock() - - Acquires the interpreter's import lock for the current thread. This lock should - be used by import hooks to ensure thread-safety when importing modules. On - platforms without threads, this function does nothing. - - -.. function:: release_lock() - - Release the interpreter's import lock. On platforms without threads, this - function does nothing. - - The following functions and data provide conveniences for handling :pep:`3147` byte-compiled file paths. |