Files
RustPython/tests/snippets/comments.py
2018-10-27 17:05:22 +02: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