1
1
mirror of https://github.com/github/semantic.git synced 2024-12-24 23:42:31 +03:00
semantic/semantic-python/test/fixtures/2-07-closure-over-scope.py
2019-12-20 11:43:15 -05:00

10 lines
110 B
Python

def const(a, b):
def result():
return a
def zilch(b):
return b
return result()