We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7d1f11 commit 6f3a03cCopy full SHA for 6f3a03c
mypyc/codegen/literals.py
@@ -5,7 +5,16 @@
5
# Supported Python literal types. All tuple / frozenset / dict items must have supported
6
# literal types as well, but we can't represent the type precisely.
7
LiteralValue = (
8
- str | bytes | int | bool | float | complex | tuple[object, ...] | frozenset[object] | dict[object, object] | None
+ str
9
+ | bytes
10
+ | int
11
+ | bool
12
+ | float
13
+ | complex
14
+ | tuple[object, ...]
15
+ | frozenset[object]
16
+ | dict[object, object]
17
+ | None
18
)
19
20
0 commit comments