diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index 889c2c97fbb..4fd11a5c0cf 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -355,6 +355,10 @@ def test_dir(): except TypeError: pass + # Two essentially featureless objects, just inheriting stuff from + # object. + vereq(dir(None), dir(Ellipsis)) + binops = { 'add': '+', 'sub': '-',