Commit 1f498ef6 authored by Thomas Heller's avatar Thomas Heller

Fix a ctypes test.

parent b0f48abd
......@@ -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'}
>>>
'''
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment