diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-09-28 19:49:27 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-09-28 19:49:27 (GMT) |
commit | e5ccf3d699162e896b2bf7560d42d77a82405c5e (patch) | |
tree | 4d1121f93bcf91322639ee4af555952b92bdf495 | |
parent | db83f72a7fb3d3c23460ee1d5feb905765ddef5a (diff) | |
parent | cf79cdb79dae01bee580d5a0a04d75b92ec192d1 (diff) | |
download | cpython-e5ccf3d699162e896b2bf7560d42d77a82405c5e.zip cpython-e5ccf3d699162e896b2bf7560d42d77a82405c5e.tar.gz cpython-e5ccf3d699162e896b2bf7560d42d77a82405c5e.tar.bz2 |
Issue #28306: Merge from 3.5
-rw-r--r-- | Doc/tutorial/errors.rst | 2 |
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: |