From e2d827d7ef6cae4932c85e1a00b81ed249fbddeb Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 12 Apr 2007 07:01:19 +0000 Subject: [PATCH] Patch #1698951: clarify deprecation message in rexec and Bastion --- Lib/Bastion.py | 2 +- Lib/rexec.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/Bastion.py b/Lib/Bastion.py index 58cce978ce3..93511b0a948 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 d289d6aa1e9..8c9cb9f1e59 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: