]> granicus.if.org Git - python/commitdiff
Sabotage rexec.py. It is not safe since the new-style classes.
authorGuido van Rossum <guido@python.org>
Mon, 6 Jan 2003 15:43:34 +0000 (15:43 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 6 Jan 2003 15:43:34 +0000 (15:43 +0000)
Lib/Bastion.py
Lib/rexec.py

index 99990a2d7df662987e78597948b520778e628ff7..ae2db74ca3a604854e54394a6b61b6f841f91ccf 100644 (file)
@@ -97,6 +97,8 @@ def Bastion(object, filter = lambda name: name[:1] != '_',
 
     """
 
+    raise RuntimeError, "This code is not secure in Python 2.2 and 2.3"
+
     # Note: we define *two* ad-hoc functions here, get1 and get2.
     # Both are intended to be called in the same way: get(name).
     # It is clear that the real work (getting the attribute
index b1a14277b5378559efd0add24867bcdc0552dc67..f7aa6402b04928694514197dea490d90371987e4 100644 (file)
@@ -180,6 +180,9 @@ class RExec(ihooks._Verbose):
         sent to standard output.
 
         """
+
+        raise RuntimeError, "This code is not secure in Python 2.2 and 2.3"
+
         ihooks._Verbose.__init__(self, verbose)
         # XXX There's a circular reference here:
         self.hooks = hooks or RHooks(verbose)