class ExampleClass(object): def __init__(self): self.ex1 = 1 def outer_test_func(self): def inner_test_func(): def inner_test_func_lvl2(): self.ex1 = 10 self.ex1 = 2 return inner_test_func def outer_test_func_with_non_default_self_name(this): def inner_test_func(): def inner_test_func_lvl2(): this.ex1 = 10 this.ex1 = 2 return inner_test_func