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 97377e3 commit 1ad379aCopy full SHA for 1ad379a
mypyc/codegen/literals.py
@@ -141,7 +141,7 @@ def encoded_tuple_values(self) -> list[str]:
141
return self._encode_collection_values(self.tuple_literals)
142
143
def encoded_frozenset_values(self) -> list[str]:
144
- def sort_frozenset_recursive(frozen: frozenset[object]) -> list[object]:
+ def sort_frozenset_recursive(value: frozenset[object]) -> list[object]:
145
# even though frozensets are not sorted in python, we need to sort the items here
146
# to improve the determinism of the generated C file, making it easier to compare
147
# differences in the C files generated by different versions of your code.
0 commit comments