diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2008-08-11 15:45:58 +0000 |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2008-08-11 15:45:58 +0000 |
commit | 48361f5cbf419cce361fd1aa0389d6304ad167db (patch) | |
tree | e3fb92982d5564830f6ce9a3f725acc51553ec50 /Lib/test/test_copy.py | |
parent | f8d62d23e9b02c557b2bbe69f693fc14c2574281 (diff) | |
download | cpython-git-48361f5cbf419cce361fd1aa0389d6304ad167db.tar.gz |
Issue 2235: Py3k warnings are now emitted for classes that will no longer inherit a__hash__ implementation from a parent class in Python 3.x. The standard library and test suite have been updated to not emit these warnings.
Diffstat (limited to 'Lib/test/test_copy.py')
-rw-r--r-- | Lib/test/test_copy.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_copy.py b/Lib/test/test_copy.py index d2899bd4ea..be334ccf05 100644 --- a/Lib/test/test_copy.py +++ b/Lib/test/test_copy.py @@ -435,6 +435,7 @@ class TestCopy(unittest.TestCase): return (C, (), self.__dict__) def __cmp__(self, other): return cmp(self.__dict__, other.__dict__) + __hash__ = None # Silence Py3k warning x = C() x.foo = [42] y = copy.copy(x) @@ -451,6 +452,7 @@ class TestCopy(unittest.TestCase): self.__dict__.update(state) def __cmp__(self, other): return cmp(self.__dict__, other.__dict__) + __hash__ = None # Silence Py3k warning x = C() x.foo = [42] y = copy.copy(x) @@ -477,6 +479,7 @@ class TestCopy(unittest.TestCase): def __cmp__(self, other): return (cmp(list(self), list(other)) or cmp(self.__dict__, other.__dict__)) + __hash__ = None # Silence Py3k warning x = C([[1, 2], 3]) y = copy.copy(x) self.assertEqual(x, y) @@ -494,6 +497,7 @@ class TestCopy(unittest.TestCase): def __cmp__(self, other): return (cmp(dict(self), list(dict)) or cmp(self.__dict__, other.__dict__)) + __hash__ = None # Silence Py3k warning x = C([("foo", [1, 2]), ("bar", 3)]) y = copy.copy(x) self.assertEqual(x, y) |