From 9594942716a8f9c557b85d31751753d89cd7cebf Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Tue, 27 Aug 2013 19:40:23 +0300 Subject: Issue #18783: Removed existing mentions of Python long type in docstrings, error messages and comments. --- Lib/xmlrpc/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/xmlrpc/client.py') diff --git a/Lib/xmlrpc/client.py b/Lib/xmlrpc/client.py index d7b2db3725..0f9522aa3c 100644 --- a/Lib/xmlrpc/client.py +++ b/Lib/xmlrpc/client.py @@ -539,7 +539,7 @@ class Marshaller: def dump_long(self, value, write): if value > MAXINT or value < MININT: - raise OverflowError("long int exceeds XML-RPC limits") + raise OverflowError("int exceeds XML-RPC limits") write("") write(str(int(value))) write("\n") -- cgit v1.2.1