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 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
|
cimport cython
from libc.string cimport strstr
cdef cfunc(a,b,c,d):
return (a,b,c,d)
cpdef cpfunc(a,b,c,d):
return (a,b,c,d)
cdef optargs(a, b=2, c=3):
return (a,b,c)
ctypedef int (*cfuncptr_type)(int a, int b)
cdef int cfuncptr(int a, int b):
print a, b
cdef cfuncptr_type get_cfuncptr():
return cfuncptr
sideeffect = []
cdef side_effect(x):
sideeffect.append(x)
return x
@cython.test_fail_if_path_exists('//GeneralCallNode')
@cython.test_assert_path_exists('//SimpleCallNode')
def cfunc_all_keywords():
"""
>>> cfunc_all_keywords()
(1, 2, 3, 4)
"""
return cfunc(a=1, b=2, c=3, d=4)
@cython.test_fail_if_path_exists('//GeneralCallNode')
@cython.test_assert_path_exists('//SimpleCallNode')
def cfunc_some_keywords():
"""
>>> cfunc_some_keywords()
(1, 2, 3, 4)
"""
return cfunc(1, 2, c=3, d=4)
@cython.test_fail_if_path_exists('//GeneralCallNode')
@cython.test_assert_path_exists('//SimpleCallNode')
def cfunc_some_keywords_unordered():
"""
>>> cfunc_some_keywords_unordered()
(1, 2, 3, 4)
"""
return cfunc(1, 2, d=4, c=3)
@cython.test_fail_if_path_exists('//GeneralCallNode')
@cython.test_assert_path_exists('//SimpleCallNode')
def cfunc_some_keywords_unordered_sideeffect():
"""
>>> del sideeffect[:]
>>> cfunc_some_keywords_unordered_sideeffect()
(1, 2, 3, 4)
>>> sideeffect
[4, 3]
"""
return cfunc(1, 2, d=side_effect(4), c=side_effect(3))
@cython.test_fail_if_path_exists('//GeneralCallNode')
@cython.test_assert_path_exists('//SimpleCallNode')
def cpfunc_all_keywords():
"""
>>> cpfunc_all_keywords()
(1, 2, 3, 4)
"""
return cpfunc(a=1, b=2, c=3, d=4)
@cython.test_fail_if_path_exists('//GeneralCallNode')
@cython.test_assert_path_exists('//SimpleCallNode')
def cpfunc_some_keywords():
"""
>>> cpfunc_some_keywords()
(1, 2, 3, 4)
"""
return cpfunc(1, 2, c=3, d=4)
@cython.test_fail_if_path_exists('//GeneralCallNode')
@cython.test_assert_path_exists('//SimpleCallNode')
def cpfunc_some_keywords_unordered():
"""
>>> cpfunc_some_keywords_unordered()
(1, 2, 3, 4)
"""
return cpfunc(1, 2, d=4, c=3)
@cython.test_fail_if_path_exists('//GeneralCallNode')
@cython.test_assert_path_exists('//SimpleCallNode')
def cpfunc_some_keywords_unordered_sideeffect():
"""
>>> del sideeffect[:]
>>> cpfunc_some_keywords_unordered_sideeffect()
(1, 2, 3, 4)
>>> sideeffect
[4, 3]
"""
return cpfunc(1, 2, d=side_effect(4), c=side_effect(3))
@cython.test_fail_if_path_exists('//GeneralCallNode')
@cython.test_assert_path_exists('//SimpleCallNode')
def libc_strstr():
"""
>>> libc_strstr()
(True, True, True, True, True)
"""
return (
strstr("xabcy", "abc") is not NULL,
strstr("abc", "xabcy") is NULL,
strstr(needle="abc", haystack="xabcz") is not NULL,
strstr(needle="xabcz", haystack="abc") is NULL,
strstr(haystack="abc", needle="xabcz") is NULL,
)
@cython.test_fail_if_path_exists('//GeneralCallNode')
@cython.test_assert_path_exists('//SimpleCallNode')
def cdef_optargs():
"""
>>> cdef_optargs()
(11, 2, 3)
(11, 2, 3)
(11, 12, 3)
(11, 12, 3)
(11, 12, 3)
(11, 12, 3)
(11, 12, 3)
(11, 12, 13)
(11, 12, 13)
(11, 12, 13)
(11, 12, 13)
(11, 12, 13)
(11, 12, 13)
(11, 12, 13)
"""
print(optargs(11))
print(optargs(a=11))
print(optargs(11, 12))
print(optargs(11, b=12))
print(optargs(a=11, b=12))
print(optargs(b=12, a=11))
print(optargs(a=11, b=12))
print(optargs(11, 12, 13))
print(optargs(11, 12, c=13))
print(optargs(11, c=13, b=12))
print(optargs(a=11, b=12, c=13))
print(optargs(b=12, a=11, c=13))
print(optargs(b=12, c=13, a=11))
print(optargs(c=13, a=11, b=12))
@cython.test_fail_if_path_exists('//GeneralCallNode')
@cython.test_assert_path_exists('//SimpleCallNode')
def cdef_funcptr():
"""
>>> cdef_funcptr()
1 2
1 2
1 2
1 2
"""
cdef cfuncptr_type cfunc_ptr = get_cfuncptr()
cfunc_ptr(1, 2)
cfunc_ptr(1, b=2)
cfunc_ptr(a=1, b=2)
cfunc_ptr(b=2, a=1)
'''
# This works but currently brings up C compiler warnings
# because the format string is not a literal C string.
from libc.stdio cimport snprintf
@cython.test_fail_if_path_exists('//GeneralCallNode')
@cython.test_assert_path_exists('//SimpleCallNode')
def varargs():
"""
>>> print(varargs())
abc
"""
cdef char[10] buffer
retval = snprintf(buffer, template="abc", size=10)
if retval < 0:
raise MemoryError()
return buffer[:retval].decode('ascii')
'''
cdef class ExtType:
cdef cmeth(self, a, b, c, d):
return (a,b,c,d)
@cython.test_fail_if_path_exists('//GeneralCallNode')
@cython.test_assert_path_exists('//SimpleCallNode')
def call_cmeth(self, ExtType ext):
"""
>>> x = ExtType()
>>> x.call_cmeth(x)
(1, 2, 3, 4)
(1, 2, 3, 4)
(1, 2, 3, 4)
EXT
(1, 2, 3, 4)
(1, 2, 3, 4)
(1, 2, 3, 4)
"""
print self.cmeth(1,2,3,4)
print self.cmeth(1,2,c=3,d=4)
print self.cmeth(a=1,b=2,c=3,d=4)
print "EXT"
print ext.cmeth(1,2,3,4)
print ext.cmeth(1,2,c=3,d=4)
print ext.cmeth(a=1,b=2,c=3,d=4)
cpdef cpmeth(self, a, b, c, d):
return (a,b,c,d)
@cython.test_fail_if_path_exists('//GeneralCallNode')
@cython.test_assert_path_exists('//SimpleCallNode')
def call_cpmeth(self, ExtType ext):
"""
>>> x = ExtType()
>>> x.call_cpmeth(x)
(1, 2, 3, 4)
(1, 2, 3, 4)
(1, 2, 3, 4)
EXT
(1, 2, 3, 4)
(1, 2, 3, 4)
(1, 2, 3, 4)
"""
print self.cpmeth(1,2,3,4)
print self.cpmeth(1,2,c=3,d=4)
print self.cpmeth(a=1,b=2,c=3,d=4)
print "EXT"
print ext.cpmeth(1,2,3,4)
print ext.cpmeth(1,2,c=3,d=4)
print ext.cpmeth(a=1,b=2,c=3,d=4)
cdef optargs(self, a=1, b=2):
return (a,b)
@cython.test_fail_if_path_exists('//GeneralCallNode')
@cython.test_assert_path_exists('//SimpleCallNode')
def call_optargs(self, ExtType ext):
"""
>>> x = ExtType()
>>> x.call_optargs(x)
(3, 4)
(3, 4)
(3, 4)
(1, 2)
(3, 2)
(3, 2)
EXT
(3, 4)
(3, 4)
(3, 4)
(1, 2)
(3, 2)
(3, 2)
"""
print self.optargs(3,4)
print self.optargs(3,b=4)
print self.optargs(a=3,b=4)
print self.optargs()
print self.optargs(3)
print self.optargs(a=3)
#print self.optargs(b=4)
print "EXT"
print ext.optargs(3,4)
print ext.optargs(3,b=4)
print ext.optargs(a=3,b=4)
print ext.optargs()
print ext.optargs(3)
print ext.optargs(a=3)
#print ext.optargs(b=4)
cpdef cpmeth_optargs(self, a=1, b=2):
return (a,b)
@cython.test_fail_if_path_exists('//GeneralCallNode')
@cython.test_assert_path_exists('//SimpleCallNode')
def call_cpmeth_optargs(self, ExtType ext):
"""
>>> x = ExtType()
>>> x.call_cpmeth_optargs(x)
(3, 4)
(3, 4)
(3, 4)
(1, 2)
(3, 2)
(3, 2)
EXT
(3, 4)
(3, 4)
(3, 4)
(1, 2)
(3, 2)
(3, 2)
"""
print self.cpmeth_optargs(3,4)
print self.cpmeth_optargs(3,b=4)
print self.cpmeth_optargs(a=3,b=4)
print self.cpmeth_optargs()
print self.cpmeth_optargs(3)
print self.cpmeth_optargs(a=3)
#print self.cpmeth_optargs(b=4)
print "EXT"
print ext.cpmeth_optargs(3,4)
print ext.cpmeth_optargs(3,b=4)
print ext.cpmeth_optargs(a=3,b=4)
print ext.cpmeth_optargs()
print ext.cpmeth_optargs(3)
print ext.cpmeth_optargs(a=3)
#print ext.cpmeth_optargs(b=4)
cpdef cpmeth_optargs1(self, a=1):
return a
@cython.test_fail_if_path_exists('//GeneralCallNode')
@cython.test_assert_path_exists('//SimpleCallNode')
def call_cpmeth_optargs1(self, ExtType ext):
"""
>>> x = ExtType()
>>> x.call_cpmeth_optargs1(x)
1
3
3
EXT
1
3
3
"""
print self.cpmeth_optargs1()
print self.cpmeth_optargs1(3)
print self.cpmeth_optargs1(a=3)
print "EXT"
print ext.cpmeth_optargs1()
print ext.cpmeth_optargs1(3)
print ext.cpmeth_optargs1(a=3)
|