summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-12-10 10:01:44 (GMT)
committerGeorg Brandl <georg@python.org>2010-12-10 10:01:44 (GMT)
commitcf03ac0c64dba3ec33f9c3af1cbe7b387d1ca534 (patch)
treedcd833a61c20b0e77814dfaf7f5a6fd5a65c531e /Lib
parent40e86f0df2084fa237cad5fbde7d377077b9522d (diff)
downloadcpython-cf03ac0c64dba3ec33f9c3af1cbe7b387d1ca534.zip
cpython-cf03ac0c64dba3ec33f9c3af1cbe7b387d1ca534.tar.gz
cpython-cf03ac0c64dba3ec33f9c3af1cbe7b387d1ca534.tar.bz2
#10668: fix wrong call of __init__.
Diffstat (limited to 'Lib')
-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 b44eb97..6de6bf2 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"