diff options
author | Georg Brandl <georg@python.org> | 2010-12-10 10:01:44 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-12-10 10:01:44 (GMT) |
commit | cf03ac0c64dba3ec33f9c3af1cbe7b387d1ca534 (patch) | |
tree | dcd833a61c20b0e77814dfaf7f5a6fd5a65c531e /Lib | |
parent | 40e86f0df2084fa237cad5fbde7d377077b9522d (diff) | |
download | cpython-cf03ac0c64dba3ec33f9c3af1cbe7b387d1ca534.zip cpython-cf03ac0c64dba3ec33f9c3af1cbe7b387d1ca534.tar.gz cpython-cf03ac0c64dba3ec33f9c3af1cbe7b387d1ca534.tar.bz2 |
#10668: fix wrong call of __init__.
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/test/test_array.py | 2 |
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" |