File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1411,7 +1411,7 @@ BaseException
1411
1411
+-- OSError # Failures such as “file not found” or “disk full”.
1412
1412
| +-- FileNotFoundError # When a file or directory is requested but doesn't exist.
1413
1413
+-- RuntimeError # Raised by errors that don't fall in other categories.
1414
- | +-- RecursionError # Raised when the the maximum recursion depth is exceeded.
1414
+ | +-- RecursionError # Raised when the maximum recursion depth is exceeded.
1415
1415
+-- TypeError # Raised when an argument is of wrong type.
1416
1416
+-- ValueError # When an argument is of right type but inappropriate value.
1417
1417
+-- UnicodeError # Raised when encoding/decoding strings from/to bytes fails.
Original file line number Diff line number Diff line change 1323
1323
+-- OSError # Failures such as “file not found” or “disk full”.
1324
1324
| +-- FileNotFoundError # When a file or directory is requested but doesn't exist.
1325
1325
+-- RuntimeError # Raised by errors that don't fall in other categories.
1326
- | +-- RecursionError # Raised when the the maximum recursion depth is exceeded.
1326
+ | +-- RecursionError # Raised when the maximum recursion depth is exceeded.
1327
1327
+-- TypeError # Raised when an argument is of wrong type.
1328
1328
+-- ValueError # When an argument is of right type but inappropriate value.
1329
1329
+-- UnicodeError # Raised when encoding/decoding strings from/to bytes fails.
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ const DIAGRAM_8_B =
180
180
" ├── OSError <span class='hljs-comment'># Failures such as “file not found” or “disk full”.</span>\n" +
181
181
" │ └── FileNotFoundError <span class='hljs-comment'># When a file or directory is requested but doesn't exist.</span>\n" +
182
182
" ├── RuntimeError <span class='hljs-comment'># Raised by errors that don't fall in other categories.</span>\n" +
183
- " │ └── RecursionError <span class='hljs-comment'># Raised when the the maximum recursion depth is exceeded.</span>\n" +
183
+ " │ └── RecursionError <span class='hljs-comment'># Raised when the maximum recursion depth is exceeded.</span>\n" +
184
184
" ├── TypeError <span class='hljs-comment'># Raised when an argument is of wrong type.</span>\n" +
185
185
" └── ValueError <span class='hljs-comment'># When an argument is of right type but inappropriate value.</span>\n" +
186
186
" └── UnicodeError <span class='hljs-comment'># Raised when encoding/decoding strings from/to bytes fails.</span>\n" ;
You can’t perform that action at this time.
0 commit comments