diff options
| author | Georg Brandl <georg@python.org> | 2007-04-21 07:23:36 (GMT) |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2007-04-21 07:23:36 (GMT) |
| commit | 6cf5abfd66ea1b01e5bed6f43bddce684ff5df87 (patch) | |
| tree | e84fcc735e3719229bde7f672742d2e3746c722d | |
| parent | 1dfa8ac6f12a9ebffd7839f0b9b97b170b794b89 (diff) | |
| download | cpython-6cf5abfd66ea1b01e5bed6f43bddce684ff5df87.zip cpython-6cf5abfd66ea1b01e5bed6f43bddce684ff5df87.tar.gz cpython-6cf5abfd66ea1b01e5bed6f43bddce684ff5df87.tar.bz2 | |
Backport r54787 - better error messages in rexec and bastion
| -rw-r--r-- | Lib/Bastion.py | 2 | ||||
| -rw-r--r-- | Lib/rexec.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/Bastion.py b/Lib/Bastion.py index 58cce97..93511b0 100644 --- a/Lib/Bastion.py +++ b/Lib/Bastion.py @@ -97,7 +97,7 @@ def Bastion(object, filter = lambda name: name[:1] != '_', """ - raise RuntimeError, "This code is not secure in Python 2.2 and 2.3" + raise RuntimeError, "This code is not secure in Python 2.2 and later" # Note: we define *two* ad-hoc functions here, get1 and get2. # Both are intended to be called in the same way: get(name). diff --git a/Lib/rexec.py b/Lib/rexec.py index d289d6a..8c9cb9f 100644 --- a/Lib/rexec.py +++ b/Lib/rexec.py @@ -181,7 +181,7 @@ class RExec(ihooks._Verbose): """ - raise RuntimeError, "This code is not secure in Python 2.2 and 2.3" + raise RuntimeError, "This code is not secure in Python 2.2 and later" ihooks._Verbose.__init__(self, verbose) # XXX There's a circular reference here: |
