Undo inadvertent change to test_scope in previous checkin

This commit is contained in:
Jeremy Hylton 2001-12-13 20:00:26 +00:00
parent 68773e779a
commit f36cfef1ae
1 changed files with 1 additions and 2 deletions

View File

@ -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: