From cf79cdb79dae01bee580d5a0a04d75b92ec192d1 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Wed, 28 Sep 2016 22:48:57 +0300 Subject: Issue #28306: Update exception message of ZeroDivisionError --- Doc/tutorial/errors.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/tutorial/errors.rst b/Doc/tutorial/errors.rst index ddb69ca..6911ce9 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: -- cgit v0.12