forked from Rust-related/RustPython
13 lines
170 B
Python
13 lines
170 B
Python
|
|
# Snippet to demo comment handling...
|
|
|
|
|
|
def foo():
|
|
a = []
|
|
|
|
# This empty comment below manifests a bug:
|
|
#
|
|
if len(a) > 2:
|
|
a.append(2)
|
|
return a
|