summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/Bastion.py3
-rw-r--r--Lib/rexec.py3
-rw-r--r--Lib/test/test_py3kwarn.py3
3 files changed, 8 insertions, 1 deletions
diff --git a/Lib/Bastion.py b/Lib/Bastion.py
index 93511b0..d0dddbf 100644
--- a/Lib/Bastion.py
+++ b/Lib/Bastion.py
@@ -25,6 +25,9 @@ the repr() of the original object. This is precomputed when the
bastion is created.
"""
+from warnings import warnpy3k
+warnpy3k("the Bastion module has been removed in Python 3.0", stacklevel=2)
+del warnpy3k
__all__ = ["BastionClass", "Bastion"]
diff --git a/Lib/rexec.py b/Lib/rexec.py
index 8c9cb9f..22b1bb2 100644
--- a/Lib/rexec.py
+++ b/Lib/rexec.py
@@ -16,6 +16,9 @@ XXX To do:
- r_exec etc. with explicit globals/locals? (Use rexec("exec ... in ...")?)
"""
+from warnings import warnpy3k
+warnpy3k("the rexec module has been removed in Python 3.0", stacklevel=2)
+del warnpy3k
import sys
diff --git a/Lib/test/test_py3kwarn.py b/Lib/test/test_py3kwarn.py
index 48cd4e7..22257e1 100644
--- a/Lib/test/test_py3kwarn.py
+++ b/Lib/test/test_py3kwarn.py
@@ -128,7 +128,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')
+ all_platforms = ('audiodev', 'imputil', 'mutex', 'user', 'new', 'rexec',
+ 'Bastion')
inclusive_platforms = {'irix':('pure',)}
def check_removal(self, module_name, optional=False):