diff --git a/Lib/ctypes/test/test_objects.py b/Lib/ctypes/test/test_objects.py index 500b0093b33..4c7441c2788 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'} >>> '''