From: Thomas Heller Date: Thu, 12 Jul 2007 11:59:52 +0000 (+0000) Subject: Fix a ctypes test. X-Git-Tag: v3.0a1~670 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1f498ef63da4caa07a44fcc97ac66894d4d29e86;p=thirdparty%2FPython%2Fcpython.git Fix a ctypes test. --- diff --git a/Lib/ctypes/test/test_objects.py b/Lib/ctypes/test/test_objects.py index 500b0093b338..4c7441c2788a 100644 --- a/Lib/ctypes/test/test_objects.py +++ b/Lib/ctypes/test/test_objects.py @@ -22,9 +22,9 @@ assigned from Python must be kept. >>> array[4] = 'foo bar' >>> array._objects -{'4': 'foo bar'} +{s'4': b'foo bar'} >>> array[4] -'foo bar' +s'foo bar' >>> It gets more complicated when the ctypes instance itself is contained @@ -47,9 +47,9 @@ of 'x' ('_b_base_' is either None, or the root object owning the memory block): >>> x.array[0] = 'spam spam spam' >>> x._objects -{'0:2': 'spam spam spam'} +{s'0:2': b'spam spam spam'} >>> x.array._b_base_._objects -{'0:2': 'spam spam spam'} +{s'0:2': b'spam spam spam'} >>> '''