Issue #28306: Merge from 3.5

This commit is contained in:
Berker Peksag 2016-09-28 22:49:27 +03:00
commit e5ccf3d699
1 changed files with 1 additions and 1 deletions

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: