To cover a recent checkin, added a test to ensure dir(None) == dir(Ellipsis).
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 @@
     except TypeError:
         pass
 
+    # Two essentially featureless objects, just inheriting stuff from
+    # object.
+    vereq(dir(None), dir(Ellipsis))
+
 binops = {
     'add': '+',
     'sub': '-',