Commit 81990780 authored by Robert Bradshaw's avatar Robert Bradshaw

One more char test fix.

parent 4da4a98a
...@@ -1695,7 +1695,7 @@ cdef struct TestAttrs: ...@@ -1695,7 +1695,7 @@ cdef struct TestAttrs:
def test_struct_attributes_format(): def test_struct_attributes_format():
""" """
>>> test_struct_attributes_format() >>> test_struct_attributes_format()
T{i:int_attrib:b:char_attrib:} T{i:int_attrib:c:char_attrib:}
""" """
cdef TestAttrs[10] array cdef TestAttrs[10] array
cdef TestAttrs[:] struct_memview = array cdef TestAttrs[:] struct_memview = array
...@@ -1703,7 +1703,7 @@ def test_struct_attributes_format(): ...@@ -1703,7 +1703,7 @@ def test_struct_attributes_format():
if sys.version_info[:2] >= (2, 7): if sys.version_info[:2] >= (2, 7):
print builtins.memoryview(struct_memview).format print builtins.memoryview(struct_memview).format
else: else:
print "T{i:int_attrib:b:char_attrib:}" print "T{i:int_attrib:c:char_attrib:}"
# Test padding at the end of structs in the buffer support # Test padding at the end of structs in the buffer support
......
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