Skip to content

Commit e41f57b

Browse files
committed
Exceptions
1 parent eecee83 commit e41f57b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1393,7 +1393,7 @@ BaseException
13931393
| +-- ZeroDivisionError # Raised when dividing by zero.
13941394
+-- AttributeError # Raised when an attribute is missing.
13951395
+-- EOFError # Raised by input() when it hits end-of-file condition.
1396-
+-- LookupError # Raised when a look-up on sequence or dict fails.
1396+
+-- LookupError # Raised when a look-up on a sequence or dict fails.
13971397
| +-- IndexError # Raised when a sequence index is out of range.
13981398
| +-- KeyError # Raised when a dictionary key is not found.
13991399
+-- NameError # Raised when a variable name is not found.

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1295,7 +1295,7 @@
12951295
| +-- ZeroDivisionError # Raised when dividing by zero.
12961296
+-- AttributeError # Raised when an attribute is missing.
12971297
+-- EOFError # Raised by input() when it hits end-of-file condition.
1298-
+-- LookupError # Raised when a look-up on sequence or dict fails.
1298+
+-- LookupError # Raised when a look-up on a sequence or dict fails.
12991299
| +-- IndexError # Raised when a sequence index is out of range.
13001300
| +-- KeyError # Raised when a dictionary key is not found.
13011301
+-- NameError # Raised when a variable name is not found.

0 commit comments

Comments
 (0)