diff options
author | Raymond Hettinger <python@rcn.com> | 2011-07-28 16:55:13 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-07-28 16:55:13 (GMT) |
commit | 66d2be898611f32e3840025055f2cd9b92b9f19c (patch) | |
tree | fdae9deaafd2bc799ba7092b92233e67bcef8b7c /Lib/test/test_descr.py | |
parent | a2250e61db26e6f03d035e8c16e5305e57714323 (diff) | |
download | cpython-66d2be898611f32e3840025055f2cd9b92b9f19c.zip cpython-66d2be898611f32e3840025055f2cd9b92b9f19c.tar.gz cpython-66d2be898611f32e3840025055f2cd9b92b9f19c.tar.bz2 |
Issue 12647: Add __bool__() method to the None object.
Diffstat (limited to 'Lib/test/test_descr.py')
-rw-r--r-- | Lib/test/test_descr.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index 4a02ec1..1f2039e 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -2068,9 +2068,6 @@ order (MRO) for bases """ # Two essentially featureless objects, just inheriting stuff from # object. self.assertEqual(dir(NotImplemented), dir(Ellipsis)) - if support.check_impl_detail(): - # None differs in PyPy: it has a __nonzero__ - self.assertEqual(dir(None), dir(Ellipsis)) # Nasty test case for proxied objects class Wrapper(object): |