Issue #28306: Merge from 3.6

This commit is contained in:
Berker Peksag 2016-09-28 22:49:46 +03:00
commit e0083e2b86

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: