summaryrefslogtreecommitdiff
path: root/tests/cpydiff/syntax_spaces.py
blob: 670cefdeac23e14da114ee2489e06a6e3b731a74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
"""
categories: Syntax,Literals
description: MicroPython requires spaces between literal numbers and keywords or ".", CPython doesn't
cause: Different parser implementation

MicroPython's tokenizer treats a sequence like ``1and`` as a single token, while CPython treats it as two tokens.

Since CPython 3.11, when the literal number is followed by a token, this syntax causes a ``SyntaxWarning`` for an "invalid literal". When a literal number is followed by a "." denoting attribute access, CPython does not warn.

workaround: Add a space between the integer literal and the intended next token.

This also fixes the ``SyntaxWarning`` in CPython.
"""

try:
    print(eval("1and 0"))
except SyntaxError:
    print("Should have worked")
try:
    print(eval("1or 0"))
except SyntaxError:
    print("Should have worked")
try:
    print(eval("1if 1else 0"))
except SyntaxError:
    print("Should have worked")
try:
    print(eval("0x1.to_bytes(1)"))
except SyntaxError:
    print("Should have worked")