diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-07-30 23:49:28 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-07-30 23:49:28 (GMT) |
commit | b8827c00b8f4c11e202a7c2401aca1c42531188c (patch) | |
tree | f00b01acb878f9efbcf9737be3fc5949c0915f8a | |
parent | 23957cb8fb4289a11f55d46c3fa01938ff01dbea (diff) | |
download | cpython-b8827c00b8f4c11e202a7c2401aca1c42531188c.zip cpython-b8827c00b8f4c11e202a7c2401aca1c42531188c.tar.gz cpython-b8827c00b8f4c11e202a7c2401aca1c42531188c.tar.bz2 |
I mess up again; BufferError inherits StandardError
-rw-r--r-- | Lib/test/exception_hierarchy.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/exception_hierarchy.txt b/Lib/test/exception_hierarchy.txt index e5ce891..82b6ddf 100644 --- a/Lib/test/exception_hierarchy.txt +++ b/Lib/test/exception_hierarchy.txt @@ -3,9 +3,9 @@ BaseException +-- KeyboardInterrupt +-- GeneratorExit +-- Exception - +-- BufferError +-- StopIteration +-- StandardError + | +-- BufferError | +-- ArithmeticError | | +-- FloatingPointError | | +-- OverflowError |