rustpython-ruff_python_parser 0.15.8

Unofficial fork for RustPython
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# The parser parses all of the following expressions but reports an error for
# invalid expressions.

# Nested await
await await x

# Starred expressions
await *x
await (*x)

# Invalid expression as per precedence
await yield x
await lambda x: x
await +x
await -x
await ~x
await not x