diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-12 19:56:08 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-12 19:56:08 (GMT) |
commit | a60c2fe4807e89a5844979fe46b3ea39572fc3be (patch) | |
tree | 0177eec0d55bb6325897ed7a19db9dad2e5df304 /Lib/test/mapping_tests.py | |
parent | 18987a11ce0f8f55aa6ec63a9d2f8e84d7460984 (diff) | |
download | cpython-a60c2fe4807e89a5844979fe46b3ea39572fc3be.zip cpython-a60c2fe4807e89a5844979fe46b3ea39572fc3be.tar.gz cpython-a60c2fe4807e89a5844979fe46b3ea39572fc3be.tar.bz2 |
Issue #23641: Cleaned out legacy dunder names from tests and docs.
Fixed 2 to 3 porting bug in pynche.ColorDB.
Diffstat (limited to 'Lib/test/mapping_tests.py')
-rw-r--r-- | Lib/test/mapping_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/mapping_tests.py b/Lib/test/mapping_tests.py index bc12c77..ff82f4e 100644 --- a/Lib/test/mapping_tests.py +++ b/Lib/test/mapping_tests.py @@ -64,7 +64,7 @@ class BasicTestMappingProtocol(unittest.TestCase): self.assertEqual(d, d) self.assertNotEqual(p, d) self.assertNotEqual(d, p) - #__non__zero__ + #bool if p: self.fail("Empty mapping must compare to False") if not d: self.fail("Full mapping must compare to True") # keys(), items(), iterkeys() ... |