Skip to content

Commit c1c5318

Browse files
committed
Exceptions
1 parent 43597c5 commit c1c5318

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1411,7 +1411,7 @@ BaseException
14111411
+-- OSError # Failures such as “file not found” or “disk full”.
14121412
| +-- FileNotFoundError # When a file or directory is requested but doesn't exist.
14131413
+-- 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.
14151415
+-- TypeError # Raised when an argument is of wrong type.
14161416
+-- ValueError # When an argument is of right type but inappropriate value.
14171417
+-- UnicodeError # Raised when encoding/decoding strings from/to bytes fails.

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1323,7 +1323,7 @@
13231323
+-- OSError # Failures such as “file not found” or “disk full”.
13241324
| +-- FileNotFoundError # When a file or directory is requested but doesn't exist.
13251325
+-- 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.
13271327
+-- TypeError # Raised when an argument is of wrong type.
13281328
+-- ValueError # When an argument is of right type but inappropriate value.
13291329
+-- UnicodeError # Raised when encoding/decoding strings from/to bytes fails.

web/script_2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ const DIAGRAM_8_B =
180180
" ├── OSError <span class='hljs-comment'># Failures such as “file not found” or “disk full”.</span>\n" +
181181
" │ └── FileNotFoundError <span class='hljs-comment'># When a file or directory is requested but doesn't exist.</span>\n" +
182182
" ├── 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" +
184184
" ├── TypeError <span class='hljs-comment'># Raised when an argument is of wrong type.</span>\n" +
185185
" └── ValueError <span class='hljs-comment'># When an argument is of right type but inappropriate value.</span>\n" +
186186
" └── UnicodeError <span class='hljs-comment'># Raised when encoding/decoding strings from/to bytes fails.</span>\n";

0 commit comments

Comments
 (0)