diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-05-10 22:42:14 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-05-10 22:42:14 (GMT) |
commit | bd474420e264d49e3df5b9effea9ad8749b7f5ce (patch) | |
tree | a4a68ab55b79c6a0430f49ba2a8788272a81edcf /Doc | |
parent | 4fabdc7a63785f97e64997c07ed438a593e9ef05 (diff) | |
download | cpython-bd474420e264d49e3df5b9effea9ad8749b7f5ce.zip cpython-bd474420e264d49e3df5b9effea9ad8749b7f5ce.tar.gz cpython-bd474420e264d49e3df5b9effea9ad8749b7f5ce.tar.bz2 |
The ihooks module has been removed.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/functions.rst | 3 | ||||
-rw-r--r-- | Doc/library/undoc.rst | 9 |
2 files changed, 1 insertions, 11 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 266611d..ff6069d 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -22,8 +22,7 @@ are always available. They are listed here in alphabetical order. The function is invoked by the :keyword:`import` statement. It mainly exists so that you can replace it with another function that has a compatible interface, in order to change the semantics of the :keyword:`import` - statement. For examples of why and how you would do this, see the standard - library module :mod:`ihooks`. See also the built-in module :mod:`imp`, which + statement. See also the built-in module :mod:`imp`, which defines some useful operations out of which you can build your own :func:`__import__` function. diff --git a/Doc/library/undoc.rst b/Doc/library/undoc.rst index 78098b0..62157d4 100644 --- a/Doc/library/undoc.rst +++ b/Doc/library/undoc.rst @@ -14,15 +14,6 @@ Fredrik Lundh; the specific contents of this chapter have been substantially revised. -Miscellaneous useful utilities -============================== - -Some of these are very old and/or not very robust; marked with "hmm." - -:mod:`ihooks` - --- Import hook support (for :mod:`rexec`; may become obsolete). - - Platform specific modules ========================= |