Commit a66a57ad authored by Stefan Behnel's avatar Stefan Behnel

Disable test in old Python versions < 3.5.

parent 96b7c23a
......@@ -750,7 +750,8 @@ ctypedef struct SameTypeAfterArraysStructComposite:
@testcase
def same_type_after_arrays_composite():
"""
>>> same_type_after_arrays_composite()
>>> same_type_after_arrays_composite() if sys.version_info >= (3, 5) else None
>>> same_type_after_arrays_composite() if sys.version_info == (2, 7) else None
"""
cdef SameTypeAfterArraysStructComposite element
......
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