blob: d42f4447ee3691dc55c2de05bdbb5c1f313248c7 [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001class A:
2 def foo(self, a, b, c, d):
3 if a:
4 if b:
5 if c:
6 if d:
7 self.bar()
8 c = 3
9 if c:
10 a = 2
11
12 def bar(self):
13 pass