: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
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
# 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')
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.