1
1
mirror of https://github.com/github/semantic.git synced 2024-12-19 04:41:47 +03:00
semantic/bench/bench-fixtures/python/if-statement-functions.py

13 lines
137 B
Python
Raw Normal View History

2018-03-08 03:34:20 +03:00
def foo(): return "bipp"
def bar(): return foo()
2018-03-08 03:47:23 +03:00
def baz(): return bar()
2018-03-08 03:34:20 +03:00
def why(): return "elle"
if True:
2018-03-08 03:47:23 +03:00
baz()
2018-03-08 03:34:20 +03:00
else:
why()