Deprecate ihooks for removal in 3.0.

This commit is contained in:
Brett Cannon 2008-05-10 22:45:07 +00:00
parent 2bca212239
commit 27508d4eb9
4 changed files with 9 additions and 2 deletions

View File

@ -22,6 +22,8 @@ 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).
.. warning:: The ihooks module has been removed in Python 3.0.
Platform specific modules
=========================

View File

@ -49,7 +49,9 @@ by the way the __import__ hook is used by the Python interpreter.) It
would also do wise to install a different version of reload().
"""
from warnings import warnpy3k
warnpy3k("the ihooks module has been removed in Python 3.0", stacklevel=2)
del warnpy3k
import __builtin__
import imp

View File

@ -129,7 +129,8 @@ class TestStdlibRemovals(unittest.TestCase):
# test.testall not tested as it executes all unit tests as an
# import side-effect.
all_platforms = ('audiodev', 'imputil', 'mutex', 'user', 'new', 'rexec',
'Bastion', 'compiler', 'dircache', 'fpformat')
'Bastion', 'compiler', 'dircache', 'fpformat',
'ihooks')
inclusive_platforms = {'irix':('pure',)}
# XXX Don't know if lib-tk is only installed if _tkinter is built.
optional_modules = ('bsddb185', 'Canvas', 'dl')

View File

@ -23,6 +23,8 @@ Extension Modules
Library
-------
- The ihooks module has been deprecated for removal in Python 3.0.
- The fpformat module has been deprecated for removal in Python 3.0.
- The dl module has been deprecated for removal in Python 3.0.