diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-09-28 19:48:57 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-09-28 19:48:57 (GMT) |
commit | cf79cdb79dae01bee580d5a0a04d75b92ec192d1 (patch) | |
tree | ed657d1ce20708e35a0df69a8f6e0ad98a7ca591 | |
parent | ab39b0995870d1ecb8efbc8c42ffebf615da400b (diff) | |
download | cpython-cf79cdb79dae01bee580d5a0a04d75b92ec192d1.zip cpython-cf79cdb79dae01bee580d5a0a04d75b92ec192d1.tar.gz cpython-cf79cdb79dae01bee580d5a0a04d75b92ec192d1.tar.bz2 |
Issue #28306: Update exception message of ZeroDivisionError
-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: |