diff options
author | Guido van Rossum <guido@python.org> | 2007-04-02 23:55:37 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-04-02 23:55:37 (GMT) |
commit | ab8802a4f75336ef9c65c5958c480609c5c92fb3 (patch) | |
tree | bcebdb66a1746228365deb9496a633a8970711da /Lib/test/test_array.py | |
parent | 01a807db2a4b2d39d8e9473e658b908ff58e1058 (diff) | |
download | cpython-ab8802a4f75336ef9c65c5958c480609c5c92fb3.zip cpython-ab8802a4f75336ef9c65c5958c480609c5c92fb3.tar.gz cpython-ab8802a4f75336ef9c65c5958c480609c5c92fb3.tar.bz2 |
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.
Diffstat (limited to 'Lib/test/test_array.py')
-rwxr-xr-x | Lib/test/test_array.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_array.py b/Lib/test/test_array.py index 597f3b2..c10ad86 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): |