summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-12-10 10:01:44 +0000
committerGeorg Brandl <georg@python.org>2010-12-10 10:01:44 +0000
commitcf03ac0c64dba3ec33f9c3af1cbe7b387d1ca534 (patch)
treedcd833a61c20b0e77814dfaf7f5a6fd5a65c531e
parent40e86f0df2084fa237cad5fbde7d377077b9522d (diff)
downloadcpython-git-cf03ac0c64dba3ec33f9c3af1cbe7b387d1ca534.tar.gz
#10668: fix wrong call of __init__.
-rwxr-xr-xLib/test/test_array.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_array.py b/Lib/test/test_array.py
index b44eb97893..6de6bf265c 100755
--- a/Lib/test/test_array.py
+++ b/Lib/test/test_array.py
@@ -22,7 +22,7 @@ class ArraySubclass(array.array):
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"