1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
|
cimport cython
from cpython.bool cimport bool
cdef class A:
pass
a_as_obj = A
@cython.test_assert_path_exists(
'//SimpleCallNode',
'//PyMethodCallNode',
'//SimpleCallNode//PyMethodCallNode',
)
@cython.test_fail_if_path_exists(
"//PythonCapiCallNode",
)
def test_non_optimised():
"""
>>> test_non_optimised()
True
"""
# Non-optimized
cdef object foo = A
assert isinstance(A(), foo)
return True
@cython.test_assert_path_exists(
'//PythonCapiCallNode',
'//PyMethodCallNode',
'//PythonCapiCallNode//PyMethodCallNode',
'//PythonCapiFunctionNode[@cname = "PyType_Check"]',
'//PythonCapiFunctionNode[@cname = "PyLong_Check"]',
'//PythonCapiFunctionNode[@cname = "PyFloat_Check"]',
'//PythonCapiFunctionNode[@cname = "PyBytes_Check"]',
'//PythonCapiFunctionNode[@cname = "PyUnicode_Check"]',
'//PythonCapiFunctionNode[@cname = "PyTuple_Check"]',
'//PythonCapiFunctionNode[@cname = "PyList_Check"]',
'//PythonCapiFunctionNode[@cname = "PyDict_Check"]',
'//PythonCapiFunctionNode[@cname = "PySet_Check"]',
'//PythonCapiFunctionNode[@cname = "PySlice_Check"]',
'//PythonCapiFunctionNode[@cname = "PyComplex_Check"]',
)
@cython.test_fail_if_path_exists(
'//SimpleCallNode',
)
def test_optimised():
"""
>>> test_optimised()
True
"""
# Optimized tests.
cdef object new_type = type('a',(),{})
assert isinstance(type('a',(),{}), type)
assert isinstance(new_type, type)
cdef object boolval = True
assert isinstance(boolval, bool)
assert isinstance(True, bool)
cdef object intval = int()
assert isinstance(intval, int)
assert isinstance(int(), int)
assert not isinstance(u"xyz", int)
cdef object floatval = float()
assert isinstance(floatval, float)
assert isinstance(float(), float)
cdef object bytesval = bytes()
assert isinstance(bytesval, bytes)
assert isinstance(bytes(), bytes)
cdef object strval = str()
assert isinstance(strval, str)
assert isinstance(str(), str)
cdef object unicodeval = unicode()
assert isinstance(unicodeval, unicode)
assert isinstance(unicode(), unicode)
cdef object tupleval = tuple()
assert isinstance(tupleval, tuple)
assert isinstance(tuple(), tuple)
cdef object listval = list()
assert isinstance(listval, list)
assert isinstance(list(), list)
cdef object dictval = dict()
assert isinstance(dictval, dict)
assert isinstance(dict(), dict)
cdef object setval = set()
assert isinstance(setval, set)
assert isinstance(set(), set)
cdef object sliceval = slice(0)
assert isinstance(sliceval, slice)
assert isinstance(slice(0), slice)
cdef object complexval = complex()
assert isinstance(complexval, complex)
assert isinstance(complex(), complex)
assert not isinstance(u"foo", int)
assert isinstance(A, type)
assert isinstance(A(), A)
cdef type typed_type = A
assert isinstance(A(), typed_type)
cdef object untyped_type = A
assert isinstance(A(), <type>untyped_type)
return True
@cython.test_assert_path_exists('//PythonCapiCallNode')
@cython.test_fail_if_path_exists('//SimpleCallNode//SimpleCallNode',
'//SimpleCallNode//PythonCapiCallNode',
'//TupleNode//NameNode')
def test_optimised_tuple():
"""
>>> test_optimised_tuple()
True
"""
assert isinstance(int(), (int, float, bytes, str, unicode, tuple, list, dict, set, slice, type, A))
assert isinstance(list(), (int, float, bytes, str, unicode, tuple, list, dict, set, slice, type, A))
assert isinstance(A(), (int, float, bytes, str, unicode, tuple, list, dict, set, slice, type, A))
assert isinstance(A(), (int, float, bytes, str, unicode, tuple, list, dict, set, slice, type, A, a_as_obj))
assert isinstance(A(), (int, float, bytes, str, unicode, tuple, list, dict, set, slice, type, a_as_obj, A))
assert isinstance(A(), (int, float, bytes, str, unicode, a_as_obj, tuple, list, dict, set, slice, type, A))
assert isinstance(0, (str, int))
return True
def test_custom():
"""
>>> test_custom()
True
"""
assert isinstance(A(), A)
return True
cdef class B:
pass
cdef class C:
pass
@cython.test_assert_path_exists('//PythonCapiCallNode')
@cython.test_fail_if_path_exists('//SimpleCallNode//SimpleCallNode',
'//SimpleCallNode//PythonCapiCallNode',
'//TupleNode//NameNode')
def test_custom_tuple(obj):
"""
>>> test_custom_tuple(A())
True
>>> test_custom_tuple(B())
True
>>> test_custom_tuple(C())
False
"""
return isinstance(obj, (A,B))
def test_nested(x):
"""
>>> test_nested(1)
True
>>> test_nested(1.5)
True
>>> test_nested("a")
False
"""
cdef object a = (x, None)
if isinstance(a[0], (int, float)):
return True
return False
def skip_if_less_than_310(f):
import sys
if sys.version_info < (3, 10):
return None
else:
return f
@skip_if_less_than_310
def test_union(tp):
"""
>>> test_union([])
True
>>> test_union(b'hello')
True
>>> test_union(list)
False
>>> test_union(1)
False
"""
return isinstance(tp, list | bytes)
|