Commit 9e6a399b authored by Tim Peters's avatar Tim Peters

To cover a recent checkin, added a test to ensure dir(None) == dir(Ellipsis).

parent fe677e20
......@@ -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': '-',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment