42 lines
505 B
Python
42 lines
505 B
Python
def f(): # type: ignore
|
|
...
|
|
|
|
class x: # some comment
|
|
...
|
|
|
|
class y:
|
|
... # comment
|
|
|
|
# whitespace doesn't matter (note the next line has a trailing space and tab)
|
|
class z:
|
|
...
|
|
|
|
def g():
|
|
# hi
|
|
...
|
|
|
|
def h():
|
|
...
|
|
# bye
|
|
|
|
# output
|
|
|
|
def f(): # type: ignore
|
|
...
|
|
|
|
class x: # some comment
|
|
...
|
|
|
|
class y: ... # comment
|
|
|
|
# whitespace doesn't matter (note the next line has a trailing space and tab)
|
|
class z: ...
|
|
|
|
def g():
|
|
# hi
|
|
...
|
|
|
|
def h():
|
|
...
|
|
# bye
|