mirror of
https://github.com/github/semantic.git
synced 2024-12-20 21:31:48 +03:00
11 lines
144 B
Python
11 lines
144 B
Python
|
def foo():
|
||
|
"""here's a docstring"""
|
||
|
pass
|
||
|
|
||
|
def bar():
|
||
|
"""and another"""
|
||
|
|
||
|
def dang():
|
||
|
"""and a nested one"""
|
||
|
pass
|