Kaydet (Commit) f36cfef1 authored tarafından Jeremy Hylton's avatar Jeremy Hylton

Undo inadvertent change to test_scope in previous checkin

üst 68773e77
...@@ -461,8 +461,7 @@ def adaptgetter(name, klass, getter): ...@@ -461,8 +461,7 @@ def adaptgetter(name, klass, getter):
kind, des = getter kind, des = getter
if kind == 1: # AV happens when stepping from this line to next if kind == 1: # AV happens when stepping from this line to next
if des == "": if des == "":
## des = "_%s__%s" % (klass.__name__, name) des = "_%s__%s" % (klass.__name__, name)
des = "1"
return lambda obj: getattr(obj, des) return lambda obj: getattr(obj, des)
class TestClass: class TestClass:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment