summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-09-28 19:49:27 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-09-28 19:49:27 (GMT)
commite5ccf3d699162e896b2bf7560d42d77a82405c5e (patch)
tree4d1121f93bcf91322639ee4af555952b92bdf495
parentdb83f72a7fb3d3c23460ee1d5feb905765ddef5a (diff)
parentcf79cdb79dae01bee580d5a0a04d75b92ec192d1 (diff)
downloadcpython-e5ccf3d699162e896b2bf7560d42d77a82405c5e.zip
cpython-e5ccf3d699162e896b2bf7560d42d77a82405c5e.tar.gz
cpython-e5ccf3d699162e896b2bf7560d42d77a82405c5e.tar.bz2
Issue #28306: Merge from 3.5
-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: