summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-09-28 19:49:46 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-09-28 19:49:46 (GMT)
commite0083e2b86a116857db41894ec3cc96112af768e (patch)
tree328b88803e33eb5f6387a75aa40b02cc38ef152e /Doc/tutorial
parent282df37365750a5235d6020ed6d343348887b560 (diff)
parente5ccf3d699162e896b2bf7560d42d77a82405c5e (diff)
downloadcpython-e0083e2b86a116857db41894ec3cc96112af768e.zip
cpython-e0083e2b86a116857db41894ec3cc96112af768e.tar.gz
cpython-e0083e2b86a116857db41894ec3cc96112af768e.tar.bz2
Issue #28306: Merge from 3.6
Diffstat (limited to 'Doc/tutorial')
-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: