circuitpython/tests/cpydiff/syntax_spaces.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
405 B
Python
Raw Permalink Normal View History

"""
categories: Syntax,Spaces
description: uPy requires spaces between literal numbers and keywords, CPy doesn't
cause: Unknown
workaround: Unknown
"""
try:
2021-03-15 09:57:36 -04:00
print(eval("1and 0"))
except SyntaxError:
2021-03-15 09:57:36 -04:00
print("Should have worked")
try:
2021-03-15 09:57:36 -04:00
print(eval("1or 0"))
except SyntaxError:
2021-03-15 09:57:36 -04:00
print("Should have worked")
try:
2021-03-15 09:57:36 -04:00
print(eval("1if 1else 0"))
except SyntaxError:
2021-03-15 09:57:36 -04:00
print("Should have worked")