Fix a ctypes test.

This commit is contained in:
Thomas Heller 2007-07-12 11:59:52 +00:00
parent b0f48abd87
commit 1f498ef63d
1 changed files with 4 additions and 4 deletions

View File

@ -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'}
>>>
'''