From 53bf15af476756190a28193ae41155eadc2b1e9e Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 6 Oct 2013 09:11:14 +0200 Subject: Fix ZeroDivisionError message (reported by Pavel Fedotov on docs@) --- Doc/tutorial/errors.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/tutorial/errors.rst b/Doc/tutorial/errors.rst index 2b76c32..4282151 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 ? -- cgit v0.12