diff options
author | Christian Heimes <christian@cheimes.de> | 2007-12-03 20:01:02 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2007-12-03 20:01:02 (GMT) |
commit | 44eeaec173d66769835e4f8a2a0ad7e605fe6aef (patch) | |
tree | 64c0a3b6fdddbbd79d15a9b7ce1021f470701566 /Lib/test/exception_hierarchy.txt | |
parent | cbcfe4f3e47d420742f726415705b116672d6779 (diff) | |
download | cpython-44eeaec173d66769835e4f8a2a0ad7e605fe6aef.zip cpython-44eeaec173d66769835e4f8a2a0ad7e605fe6aef.tar.gz cpython-44eeaec173d66769835e4f8a2a0ad7e605fe6aef.tar.bz2 |
Patch #1537 from Chad Austin
Change GeneratorExit's base class from Exception to BaseException
(This time I'm applying the patch to the correct sandbox.)
Diffstat (limited to 'Lib/test/exception_hierarchy.txt')
-rw-r--r-- | Lib/test/exception_hierarchy.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/test/exception_hierarchy.txt b/Lib/test/exception_hierarchy.txt index a03f7bb..1be5ce0 100644 --- a/Lib/test/exception_hierarchy.txt +++ b/Lib/test/exception_hierarchy.txt @@ -1,8 +1,8 @@ BaseException +-- SystemExit +-- KeyboardInterrupt + +-- GeneratorExit +-- Exception - +-- GeneratorExit +-- StopIteration +-- StandardError | +-- ArithmeticError @@ -33,10 +33,10 @@ BaseException | +-- SystemError | +-- TypeError | +-- ValueError - | | +-- UnicodeError - | | +-- UnicodeDecodeError - | | +-- UnicodeEncodeError - | | +-- UnicodeTranslateError + | +-- UnicodeError + | +-- UnicodeDecodeError + | +-- UnicodeEncodeError + | +-- UnicodeTranslateError +-- Warning +-- DeprecationWarning +-- PendingDeprecationWarning |