Commit 4300f69a authored by Éric Araujo's avatar Éric Araujo

Update skip message printed by test.support.get_attribute.

This helper was changed to work with any object instead of only modules
(or technically something with a __name__ attribute, see code in 3.2)
but the message stayed as is.
parent c4637714
...@@ -187,8 +187,7 @@ def get_attribute(obj, name): ...@@ -187,8 +187,7 @@ def get_attribute(obj, name):
try: try:
attribute = getattr(obj, name) attribute = getattr(obj, name)
except AttributeError: except AttributeError:
raise unittest.SkipTest("module %s has no attribute %s" % ( raise unittest.SkipTest("object %r has no attribute %r" % (obj, name))
repr(obj), name))
else: else:
return attribute return attribute
......
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