summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial/errors.rst
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-09-28 19:48:57 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-09-28 19:48:57 (GMT)
commitcf79cdb79dae01bee580d5a0a04d75b92ec192d1 (patch)
treeed657d1ce20708e35a0df69a8f6e0ad98a7ca591 /Doc/tutorial/errors.rst
parentab39b0995870d1ecb8efbc8c42ffebf615da400b (diff)
downloadcpython-cf79cdb79dae01bee580d5a0a04d75b92ec192d1.zip
cpython-cf79cdb79dae01bee580d5a0a04d75b92ec192d1.tar.gz
cpython-cf79cdb79dae01bee580d5a0a04d75b92ec192d1.tar.bz2
Issue #28306: Update exception message of ZeroDivisionError
Diffstat (limited to 'Doc/tutorial/errors.rst')
-rw-r--r--Doc/tutorial/errors.rst2
1 files changed, 1 insertions, 1 deletions
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: