summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_descr.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-04-06 19:13:41 (GMT)
committerRaymond Hettinger <python@rcn.com>2003-04-06 19:13:41 (GMT)
commitf394df47fd943d7067b5c3bedbf2c359d864923c (patch)
tree703795b41b64dd42cca59a157ecabd67c8b8dd59 /Lib/test/test_descr.py
parentff41c48a77b7d1411ce97190c8b8405bdaa261e1 (diff)
downloadcpython-f394df47fd943d7067b5c3bedbf2c359d864923c.zip
cpython-f394df47fd943d7067b5c3bedbf2c359d864923c.tar.gz
cpython-f394df47fd943d7067b5c3bedbf2c359d864923c.tar.bz2
SF bug #699934: Obscure error message
mwh pointed out that the error message did not make sense if obtained by rearranging the bases.
Diffstat (limited to 'Lib/test/test_descr.py')
-rw-r--r--Lib/test/test_descr.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py
index d925c75..507938e 100644
--- a/Lib/test/test_descr.py
+++ b/Lib/test/test_descr.py
@@ -1062,9 +1062,8 @@ def consistency_with_epg():
(EditableScrollablePane, ScrollablePane, EditablePane,
Pane, ScrollingMixin, EditingMixin, object))
-mro_err_msg = """Cannot create class.The superclasses have conflicting
-inheritance trees which leave the method resolution order (MRO)
-undefined for bases """
+mro_err_msg = """Cannot create a consistent method resolution
+order (MRO) for bases """
def mro_disagreement():
if verbose: print "Testing error messages for MRO disagreement..."