8000 Fix typo (thanks Nick). · python/cpython@b346042 · GitHub
[go: up one dir, main page]

Skip to content

Commit b346042

Browse files
committed
Fix typo (thanks Nick).
1 parent edf3b73 commit b346042

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/_abcoll.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ def __eq__(self, other):
382382
return set(self) == set(other)
383383

384384
def __ne__(self, other):
385-
return set(self) == set(other)
385+
return set(self) != set(other)
386386

387387
class MappingView(metaclass=ABCMeta):
388388

0 commit comments

Comments
 (0)
0