summaryrefslogtreecommitdiff
path: root/tests/functional/e/empty_comment.py
blob: 6adaa4fc15491afc888fd4a4f99a606c9d6b5f75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
"""empty-comment test-case"""
# +1:[empty-comment]
A = 5  #
# +1:[empty-comment]
#
A = '#' + '1'
# +1:[empty-comment]
print(A)  #
print("A=", A)  # should not be an error#
# +1:[empty-comment]
A = "#pe\0ace#love#"  #
A = "peace#love"  # \0 peace'#'''' love#peace'''-'#love'-"peace#love"#
#######