From: Berker Peksag Date: Wed, 28 Sep 2016 19:48:57 +0000 (+0300) Subject: Issue #28306: Update exception message of ZeroDivisionError X-Git-Tag: v3.6.0b2~97^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cf79cdb79dae01bee580d5a0a04d75b92ec192d1;p=python Issue #28306: Update exception message of ZeroDivisionError --- diff --git a/Doc/tutorial/errors.rst b/Doc/tutorial/errors.rst index ddb69cae99..6911ce9b21 100644 --- a/Doc/tutorial/errors.rst +++ b/Doc/tutorial/errors.rst @@ -201,7 +201,7 @@ indirectly) in the try clause. For example:: ... except ZeroDivisionError as err: ... print('Handling run-time error:', err) ... - Handling run-time error: int division or modulo by zero + Handling run-time error: division by zero .. _tut-raising: