Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 4d464cc

Browse filesBrowse files
authored
Merge pull request #4627 from dalinaum/exception_hierarchy.txt
Update Lib/test/exception_hierarchy.txt from CPython 3.11.2
2 parents 174fbe5 + 4030807 commit 4d464cc
Copy full SHA for 4d464cc

File tree

1 file changed

+66
-64
lines changed
Filter options

1 file changed

+66
-64
lines changed

‎Lib/test/exception_hierarchy.txt

Copy file name to clipboard
+66-64Lines changed: 66 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,67 @@
11
BaseException
2-
+-- SystemExit
3-
+-- KeyboardInterrupt
4-
+-- GeneratorExit
5-
+-- Exception
6-
+-- StopIteration
7-
+-- StopAsyncIteration
8-
+-- ArithmeticError
9-
| +-- FloatingPointError
10-
| +-- OverflowError
11-
| +-- ZeroDivisionError
12-
+-- AssertionError
13-
+-- AttributeError
14-
+-- BufferError
15-
+-- EOFError
16-
+-- ImportError
17-
| +-- ModuleNotFoundError
18-
+-- LookupError
19-
| +-- IndexError
20-
| +-- KeyError
21-
+-- MemoryError
22-
+-- NameError
23-
| +-- UnboundLocalError
24-
+-- OSError
25-
| +-- BlockingIOError
26-
| +-- ChildProcessError
27-
| +-- ConnectionError
28-
| | +-- BrokenPipeError
29-
| | +-- ConnectionAbortedError
30-
| | +-- ConnectionRefusedError
31-
| | +-- ConnectionResetError
32-
| +-- FileExistsError
33-
| +-- FileNotFoundError
34-
| +-- InterruptedError
35-
| +-- IsADirectoryError
36-
| +-- NotADirectoryError
37-
| +-- PermissionError
38-
| +-- ProcessLookupError
39-
| +-- TimeoutError
40-
+-- ReferenceError
41-
+-- RuntimeError
42-
| +-- NotImplementedError
43-
| +-- RecursionError
44-
+-- SyntaxError
45-
| +-- IndentationError
46-
| +-- TabError
47-
+-- SystemError
48-
+-- TypeError
49-
+-- ValueError
50-
| +-- UnicodeError
51-
| +-- UnicodeDecodeError
52-
| +-- UnicodeEncodeError
53-
| +-- UnicodeTranslateError
54-
+-- Warning
55-
+-- DeprecationWarning
56-
+-- PendingDeprecationWarning
57-
+-- RuntimeWarning
58-
+-- SyntaxWarning
59-
+-- UserWarning
60-
+-- FutureWarning
61-
+-- ImportWarning
62-
+-- UnicodeWarning
63-
+-- BytesWarning
64-
+-- EncodingWarning
65-
+-- ResourceWarning
2+
├── BaseExceptionGroup
3+
├── GeneratorExit
4+
├── KeyboardInterrupt
5+
├── SystemExit
6+
└── Exception
7+
├── ArithmeticError
8+
│ ├── FloatingPointError
9+
│ ├── OverflowError
10+
│ └── ZeroDivisionError
11+
├── AssertionError
12+
├── AttributeError
13+
├── BufferError
14+
├── EOFError
15+
├── ExceptionGroup [BaseExceptionGroup]
16+
├── ImportError
17+
│ └── ModuleNotFoundError
18+
├── LookupError
19+
│ ├── IndexError
20+
│ └── KeyError
21+
├── MemoryError
22+
├── NameError
23+
│ └── UnboundLocalError
24+
├── OSError
25+
│ ├── BlockingIOError
26+
│ ├── ChildProcessError
27+
│ ├── ConnectionError
28+
│ │ ├── BrokenPipeError
29+
│ │ ├── ConnectionAbortedError
30+
│ │ ├── ConnectionRefusedError
31+
│ │ └── ConnectionResetError
32+
│ ├── FileExistsError
33+
│ ├── FileNotFoundError
34+
│ ├── InterruptedError
35+
│ ├── IsADirectoryError
36+
│ ├── NotADirectoryError
37+
│ ├── PermissionError
38+
│ ├── ProcessLookupError
39+
│ └── TimeoutError
40+
├── ReferenceError
41+
├── RuntimeError
42+
│ ├── NotImplementedError
43+
│ └── RecursionError
44+
├── StopAsyncIteration
45+
├── StopIteration
46+
├── SyntaxError
47+
│ └── IndentationError
48+
│ └── TabError
49+
├── SystemError
50+
├── TypeError
51+
├── ValueError
52+
│ └── UnicodeError
53+
│ ├── UnicodeDecodeError
54+
│ ├── UnicodeEncodeError
55+
│ └── UnicodeTranslateError
56+
└── Warning
57+
├── BytesWarning
58+
├── DeprecationWarning
59+
├── EncodingWarning
60+
├── FutureWarning
61+
├── ImportWarning
62+
├── PendingDeprecationWarning
63+
├── ResourceWarning
64+
├── RuntimeWarning
65+
├── SyntaxWarning
66+
├── UnicodeWarning
67+
└── UserWarning

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.