summaryrefslogtreecommitdiffstats
path: root/Lib/pathlib.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-01-26 07:57:07 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-01-26 07:57:07 (GMT)
commitf4b7a02e932671c6e54e6b48340173cc859ab4c0 (patch)
treeeaa9107bb2885a9ed40f9c697a31049826324dde /Lib/pathlib.py
parent155ceaa454ad9a623cade5ed326e6e1e70ce109d (diff)
downloadcpython-f4b7a02e932671c6e54e6b48340173cc859ab4c0.zip
cpython-f4b7a02e932671c6e54e6b48340173cc859ab4c0.tar.gz
cpython-f4b7a02e932671c6e54e6b48340173cc859ab4c0.tar.bz2
Issue #21408: The default __ne__() now returns NotImplemented if __eq__()
returned NotImplemented. Removed incorrect implementations of __ne__().
Diffstat (limited to 'Lib/pathlib.py')
-rw-r--r--Lib/pathlib.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/pathlib.py b/Lib/pathlib.py
index 5d36364..73fd432 100644
--- a/Lib/pathlib.py
+++ b/Lib/pathlib.py
@@ -665,9 +665,6 @@ class PurePath(object):
return NotImplemented
return self._cparts == other._cparts and self._flavour is other._flavour
- def __ne__(self, other):
- return not self == other
-
def __hash__(self):
try:
return self._hash