From: Jeremy Hylton Date: Thu, 13 Dec 2001 20:00:26 +0000 (+0000) Subject: Undo inadvertent change to test_scope in previous checkin X-Git-Tag: v2.2.1c1~372 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f36cfef1ae513a5b123a3dc3c06e5a0271fb10ed;p=thirdparty%2FPython%2Fcpython.git Undo inadvertent change to test_scope in previous checkin --- diff --git a/Lib/test/test_scope.py b/Lib/test/test_scope.py index 3bb1fdd4d4fd..dde169a05d54 100644 --- a/Lib/test/test_scope.py +++ b/Lib/test/test_scope.py @@ -461,8 +461,7 @@ def adaptgetter(name, klass, getter): kind, des = getter if kind == 1: # AV happens when stepping from this line to next if des == "": -## des = "_%s__%s" % (klass.__name__, name) - des = "1" + des = "_%s__%s" % (klass.__name__, name) return lambda obj: getattr(obj, des) class TestClass: