From ab8802a4f75336ef9c65c5958c480609c5c92fb3 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 2 Apr 2007 23:55:37 +0000 Subject: Fix warnings about object.__init__() signature. Two (test_array and test_descr) were bug IMO; the third (copy_reg) is a work-around which recognizes that object.__init__() doesn't do anything. --- Lib/test/test_array.py | 1 - 1 file changed, 1 deletion(-) (limited to 'Lib/test/test_array.py') diff --git a/Lib/test/test_array.py b/Lib/test/test_array.py index 597f3b2421..c10ad86eea 100755 --- a/Lib/test/test_array.py +++ b/Lib/test/test_array.py @@ -728,7 +728,6 @@ class CharacterTest(StringTest): return array.array.__new__(cls, 'c', s) def __init__(self, s, color='blue'): - array.array.__init__(self, 'c', s) self.color = color def strip(self): -- cgit v1.2.1