Issue #28306: Update exception message of ZeroDivisionError

This commit is contained in:
Berker Peksag 2016-09-28 22:48:57 +03:00
parent ab39b09958
commit cf79cdb79d

View file

@ -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: