Commit 58a54df4 authored by Denis Bilenko's avatar Denis Bilenko

test__all__.py: better error message

parent 333ffc26
......@@ -84,7 +84,7 @@ class Test(unittest.TestCase):
for name in self.__imports__:
item = getattr(self.module, name)
stdlib_item = getattr(self.stdlib_module, name)
assert item is stdlib_item, (item, stdlib_item)
assert item is stdlib_item, (name, item, stdlib_item)
def check_extensions_actually_extend(self):
"""Check that the module actually defines new entries in __extensions__"""
......
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