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 7229fb4 commit 5906c17Copy full SHA for 5906c17
mypyc/irbuild/ll_builder.py
@@ -1355,7 +1355,9 @@ def load_complex(self, value: complex) -> Value:
1355
"""Load a complex literal value."""
1356
return self.add(LoadLiteral(value, object_rprimitive))
1357
1358
- def load_tuple(self, value: tuple[Any, ...]) -> Value: # should this be RTuple? conditional RTuple when length is known?
+ def load_tuple(
1359
+ self, value: tuple[Any, ...]
1360
+ ) -> Value: # should this be RTuple? conditional RTuple when length is known?
1361
return self.add(LoadLiteral(value, tuple_rprimitive))
1362
1363
def load_dict(self, value: dict[Any, Any]) -> Value:
0 commit comments