diff options
| -rw-r--r-- | Lib/test/test_descr.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index 889c2c9..4fd11a5 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': '-', |
