From cf03ac0c64dba3ec33f9c3af1cbe7b387d1ca534 Mon Sep 17 00:00:00 2001
From: Georg Brandl <georg@python.org>
Date: Fri, 10 Dec 2010 10:01:44 +0000
Subject: [PATCH] #10668: fix wrong call of __init__.

---
 Lib/test/test_array.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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"
-- 
2.40.0