From 7217446fde420c33d1917cfc6ae0841057a0c24b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= <sornjure@gmail.com> Date: Mon, 8 Jul 2019 22:48:04 +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 80bb754..55a0724 100644 --- a/README.md +++ b/README.md @@ -1361,7 +1361,7 @@ BaseException +-- ValueError # When an argument is of right type but inappropriate value. +-- UnicodeError # Raised when encoding/decoding strings from/to bytes fails. ``` -* *Appropriate built-in exceptions for user to rise are: 'ValueError', 'TypeError' and 'RuntimeError'..** +* **Appropriate built-in exceptions for user to rise are: 'ValueError', 'TypeError' and 'RuntimeError'..** Print diff --git a/index.html b/index.html index 4497414..f6a11a5 100644 --- a/index.html +++ b/index.html @@ -1256,7 +1256,7 @@ KeyboardInterrupt +-- UnicodeError <span class="hljs-comment"># Raised when encoding/decoding strings from/to bytes fails. </span> </code></pre> <ul> -<li><em>Appropriate built-in exceptions for user to rise are: 'ValueError', 'TypeError' and 'RuntimeError'..</em>*</li> +<li><strong>Appropriate built-in exceptions for user to rise are: 'ValueError', 'TypeError' and 'RuntimeError'..</strong></li> </ul> <h2 id="print"><a href="#print" name="print">#</a>Print</h2> <pre><code class="python language-python hljs">print(<el_1>, ..., sep=<span class="hljs-string">' '</span>, end=<span class="hljs-string">'\n'</span>, file=sys.stdout, flush=<span class="hljs-keyword">False</span>)