diff options
author | Michael W. Hudson <mwh@python.net> | 2002-11-27 15:40:09 (GMT) |
---|---|---|
committer | Michael W. Hudson <mwh@python.net> | 2002-11-27 15:40:09 (GMT) |
commit | 7e7c00db0cc8621d6020f2552a6dba86b4d08d6f (patch) | |
tree | 81f885d86c41a3fd15ae7f7c8bfdf1a485110d06 /Lib | |
parent | 586da8fddd6bcf5dd7a2e6a99394f218424a87ca (diff) | |
download | cpython-7e7c00db0cc8621d6020f2552a6dba86b4d08d6f.zip cpython-7e7c00db0cc8621d6020f2552a6dba86b4d08d6f.tar.gz cpython-7e7c00db0cc8621d6020f2552a6dba86b4d08d6f.tar.bz2 |
I don't know why staring at the email to python-checkins made me
see problems with my code that I didn't see before the checkin, but:
When a subtype .mro() fails, we need to reset the type whose __bases__
are being changed, too. Fix + test.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_descr.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index 19a0ae4..99eecd3 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -3566,11 +3566,13 @@ def test_mutable_bases_with_failing_mro(): # check here that E's gets restored. E_mro_before = E.__mro__ + D_mro_before = D.__mro__ try: D.__bases__ = (C2,) except RuntimeError: vereq(E.__mro__, E_mro_before) + vereq(D.__mro__, D_mro_before) else: raise TestFailed, "exception not propagated" |