From 316e0405c3db513ebb44121317aff0a4c5e7d66b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Thu, 29 Apr 2021 03:10:50 +0200 Subject: [PATCH] Exceptions --- README.md | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1e3b6ca..435abc3 100644 --- a/README.md +++ b/README.md @@ -1356,7 +1356,7 @@ else: finally: ``` -* **Code inside the `'else'` block will only be executed if `'try'` block had no exception.** +* **Code inside the `'else'` block will only be executed if `'try'` block had no exceptions.** * **Code inside the `'finally'` block will always be executed.** ### Catching Exceptions diff --git a/index.html b/index.html index b35910e..5eb8498 100644 --- a/index.html +++ b/index.html @@ -1312,7 +1312,7 @@ LogicOp = Enum('LogicOp', {'else' block will only be executed if 'try' block had no exception. +
  • Code inside the 'else' block will only be executed if 'try' block had no exceptions.
  • Code inside the 'finally' block will always be executed.
  • Catching Exceptions

    except <exception>: