From bded28c081fe405a382fbb6b246a55a0697cea45 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 8 Aug 2012 20:19:37 +0200 Subject: Issue #13072: Ooops, now fix test_array for Linux with 32-bit wchar_t... --- Lib/test/test_array.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_array.py b/Lib/test/test_array.py index cbadba9..974e178 100755 --- a/Lib/test/test_array.py +++ b/Lib/test/test_array.py @@ -3,6 +3,7 @@ Roger E. Masse """ +import ctypes import unittest from test import support import weakref @@ -1041,7 +1042,7 @@ class UnicodeTest(StringTest): a.fromunicode('\x11abc\xff\u1234') s = a.tounicode() self.assertEqual(s, '\xa0\xc2\u1234 \x11abc\xff\u1234') - self.assertEqual(a.itemsize, 2) + self.assertEqual(a.itemsize, ctypes.sizeof(ctypes.c_wchar)) s = '\x00="\'a\\b\x80\xff\u0000\u0001\u1234' a = array.array('u', s) -- cgit v0.12