blob: 56a5e579abfae763ef65e52152f2ec4aa051064a [file] [log] [blame]
class C:
def baz(self, arg_new):
self.bar(arg_new)
def foo(self, option, arg):
if option:
self.baz(arg)
def bar(self, arg):
pass