diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-12 22:01:30 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-12 22:01:30 +0200 |
commit | c2ccce791ccbe35bee0edea2dedabb0fc7ea5906 (patch) | |
tree | c31fcb2d158d17ab07038f26ec016b37e5b8cea0 /Lib/test/test_property.py | |
parent | da0870c87aeb7843f0211d3fd9220f6f5b58f688 (diff) | |
parent | a60c2fe4807e89a5844979fe46b3ea39572fc3be (diff) | |
download | cpython-git-c2ccce791ccbe35bee0edea2dedabb0fc7ea5906.tar.gz |
Issue #23641: Cleaned out legacy dunder names from tests and docs.
Fixed 2 to 3 porting bug in pynche.ColorDB.
Added few tests for __truediv__, __floordiv__ and __matmul__.
Diffstat (limited to 'Lib/test/test_property.py')
-rw-r--r-- | Lib/test/test_property.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_property.py b/Lib/test/test_property.py index 96eeb88b89..cee7203d15 100644 --- a/Lib/test/test_property.py +++ b/Lib/test/test_property.py @@ -140,9 +140,9 @@ class PropertyTests(unittest.TestCase): # check that the property's __isabstractmethod__ descriptor does the # right thing when presented with a value that fails truth testing: class NotBool(object): - def __nonzero__(self): + def __bool__(self): raise ValueError() - __len__ = __nonzero__ + __len__ = __bool__ with self.assertRaises(ValueError): class C(object): def foo(self): |