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/test/test_struct.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/test/test_struct.py') diff --git a/Lib/test/test_struct.py b/Lib/test/test_struct.py index 22374d244d..50cae052f3 100644 --- a/Lib/test/test_struct.py +++ b/Lib/test/test_struct.py @@ -278,7 +278,7 @@ class StructTest(unittest.TestCase): # Objects with an '__index__' method should be allowed # to pack as integers. That is assuming the implemented - # '__index__' method returns and 'int' or 'long'. + # '__index__' method returns an 'int'. class Indexable(object): def __init__(self, value): self._value = value -- cgit v1.2.1