Skip to content

Commit 2aaa83d

Browse files
authored
Fix typo in comment (pythongh-107389)
1 parent fc130c4 commit 2aaa83d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/dataclasses.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1036,7 +1036,7 @@ def _process_class(cls, init, repr, eq, order, unsafe_hash, frozen,
10361036
# Was this class defined with an explicit __hash__? Note that if
10371037
# __eq__ is defined in this class, then python will automatically
10381038
# set __hash__ to None. This is a heuristic, as it's possible
1039-
# that such a __hash__ == None was not auto-generated, but it
1039+
# that such a __hash__ == None was not auto-generated, but it's
10401040
# close enough.
10411041
class_hash = cls.__dict__.get('__hash__', MISSING)
10421042
has_explicit_hash = not (class_hash is MISSING or

0 commit comments

Comments
 (0)