From: Georg Brandl Date: Sun, 6 Oct 2013 07:11:14 +0000 (+0200) Subject: Fix ZeroDivisionError message (reported by Pavel Fedotov on docs@) X-Git-Tag: v3.4.0a4~268^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=53bf15af476756190a28193ae41155eadc2b1e9e;p=thirdparty%2FPython%2Fcpython.git Fix ZeroDivisionError message (reported by Pavel Fedotov on docs@) --- diff --git a/Doc/tutorial/errors.rst b/Doc/tutorial/errors.rst index 2b76c32da0ff..4282151589a0 100644 --- a/Doc/tutorial/errors.rst +++ b/Doc/tutorial/errors.rst @@ -45,7 +45,7 @@ programs, however, and result in error messages as shown here:: >>> 10 * (1/0) Traceback (most recent call last): File "", line 1, in ? - ZeroDivisionError: int division or modulo by zero + ZeroDivisionError: division by zero >>> 4 + spam*3 Traceback (most recent call last): File "", line 1, in ?