commit | cf03ac0c64dba3ec33f9c3af1cbe7b387d1ca534 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Fri Dec 10 10:01:44 2010 +0000 |
committer | Georg Brandl <georg@python.org> | Fri Dec 10 10:01:44 2010 +0000 |
tree | dcd833a61c20b0e77814dfaf7f5a6fd5a65c531e | |
parent | 40e86f0df2084fa237cad5fbde7d377077b9522d [diff] [blame] |
#10668: fix wrong call of __init__.
diff --git a/Lib/test/test_array.py b/Lib/test/test_array.py index b44eb97..6de6bf2 100755 --- a/Lib/test/test_array.py +++ b/Lib/test/test_array.py
@@ -22,7 +22,7 @@ class ArraySubclassWithKwargs(array.array): def __init__(self, typecode, newarg=None): - array.array.__init__(typecode) + array.array.__init__(self, typecode) tests = [] # list to accumulate all tests typecodes = "ubBhHiIlLfd"