Files
RustPython/extra_tests/snippets/comments.py
2020-09-13 06:58:57 +09:00

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