Browse Source

Exceptions

pull/42/head
Jure Šorn 5 years ago
parent
commit
e41f57b77c
2 changed files with 2 additions and 2 deletions
  1. 2
      README.md
  2. 2
      index.html

2
README.md

@ -1393,7 +1393,7 @@ BaseException
| +-- ZeroDivisionError # Raised when dividing by zero.
+-- AttributeError # Raised when an attribute is missing.
+-- EOFError # Raised by input() when it hits end-of-file condition.
+-- LookupError # Raised when a look-up on sequence or dict fails.
+-- LookupError # Raised when a look-up on a sequence or dict fails.
| +-- IndexError # Raised when a sequence index is out of range.
| +-- KeyError # Raised when a dictionary key is not found.
+-- NameError # Raised when a variable name is not found.

2
index.html

@ -1295,7 +1295,7 @@ LogicOp = Enum(<span class="hljs-string">'LogicOp'</span>, {<span class="hljs-st
| +-- ZeroDivisionError # Raised when dividing by zero.
+-- AttributeError # Raised when an attribute is missing.
+-- EOFError # Raised by input() when it hits end-of-file condition.
+-- LookupError # Raised when a look-up on sequence or dict fails.
+-- LookupError # Raised when a look-up on a sequence or dict fails.
| +-- IndexError # Raised when a sequence index is out of range.
| +-- KeyError # Raised when a dictionary key is not found.
+-- NameError # Raised when a variable name is not found.

Loading…
Cancel
Save