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 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411
|
PYTHON setup.py build_ext --inplace
PYTHON -c "import bar"
PYTHON -c "import run"
PYTHON -c "import crun"
######## setup.py ########
from Cython.Build.Dependencies import cythonize
from distutils.core import setup
setup(
ext_modules = cythonize(["*.pyx", "aa.py"], compiler_directives={'legacy_implicit_noexcept': True}),
)
######## run.py ########
import aa
def check_exception_propagated(c, ret_expected):
assert c(False) == ret_expected
try:
c(True)
except ValueError:
pass
else:
assert False, "ValueError not raised"
def check_exception_not_propagated(c, ret_expected):
assert c(False) == ret_expected
try:
c(True)
except ValueError:
assert False, "ValueError raised"
else:
pass
klass = aa.Klass()
check_exception_propagated(klass.m1, 1)
check_exception_not_propagated(klass.m2, 2)
check_exception_not_propagated(klass.m3, 3)
check_exception_propagated(klass.m4, 4)
check_exception_propagated(klass.m5, 5)
check_exception_propagated(klass.n1, "n1")
check_exception_propagated(klass.n2, "n2")
check_exception_propagated(klass.n3, "n3")
check_exception_not_propagated(klass.o3, None)
check_exception_propagated(klass.o2, None)
check_exception_not_propagated(klass.o3, None)
check_exception_propagated(aa.m1, 1)
check_exception_not_propagated(aa.m2, 2)
check_exception_not_propagated(aa.m3, 3)
check_exception_propagated(aa.m4, 4)
check_exception_propagated(aa.m5, 5)
check_exception_propagated(aa.n1, "n1")
check_exception_propagated(aa.n2, "n2")
check_exception_propagated(aa.n3, "n3")
check_exception_not_propagated(aa.o3, None)
check_exception_propagated(aa.o2, None)
check_exception_not_propagated(aa.o3, None)
######## crun.pyx ########
cimport aa
cdef aa.Klass klass = aa.Klass()
assert klass.p1(False) == 1
try: klass.p1(True)
except ValueError: pass
else: assert False, "ValueError not raised"
assert klass.p2(False) == 2
try: klass.p2(True)
except ValueError: assert False, "ValueError not raised"
else: pass
assert klass.p3(False) == 3
try: klass.p3(True)
except ValueError: assert False, "ValueError not raised"
else: pass
assert klass.p4(False) == 4
try: klass.p4(True)
except ValueError: pass
else: assert False, "ValueError not raised"
assert klass.p5(False) == 5
try: klass.p5(True)
except ValueError: pass
else: assert False, "ValueError not raised"
assert klass.q1(False) == 'q1'
try: klass.q1(True)
except ValueError: pass
else: assert False, "ValueError not raised"
assert klass.q2(False) == 'q2'
try: klass.q2(True)
except ValueError: pass
else: assert False, "ValueError not raised"
assert klass.q3(False) == 'q3'
try: klass.q3(True)
except ValueError: pass
else: assert False, "ValueError not raised"
klass.r1(False)
try: klass.r1(True)
except ValueError: assert False, "ValueError not raised"
else: pass
klass.r2(False)
try: klass.r2(True)
except ValueError: pass
else: assert False, "ValueError not raised"
klass.r3(False)
try: klass.r3(True)
except ValueError: assert False, "ValueError not raised"
else: pass
assert aa.p1(False) == 1
try: aa.p1(True)
except ValueError: pass
else: assert False, "ValueError not raised"
assert aa.p2(False) == 2
try: aa.p2(True)
except ValueError: assert False, "ValueError not raised"
else: pass
assert aa.p3(False) == 3
try: aa.p3(True)
except ValueError: assert False, "ValueError not raised"
else: pass
assert aa.p4(False) == 4
try: aa.p4(True)
except ValueError: pass
else: assert False, "ValueError not raised"
assert aa.p5(False) == 5
try: aa.p5(True)
except ValueError: pass
else: assert False, "ValueError not raised"
assert aa.q1(False) == 'q1'
try: aa.q1(True)
except ValueError: pass
else: assert False, "ValueError not raised"
assert aa.q2(False) == 'q2'
try: aa.q2(True)
except ValueError: pass
else: assert False, "ValueError not raised"
assert aa.q3(False) == 'q3'
try: aa.q3(True)
except ValueError: pass
else: assert False, "ValueError not raised"
aa.r1(False)
try: aa.r1(True)
except ValueError: assert False, "ValueError not raised"
else: pass
aa.r2(False)
try: aa.r2(True)
except ValueError: pass
else: assert False, "ValueError not raised"
aa.r3(False)
try: aa.r3(True)
except ValueError: assert False, "ValueError not raised"
else: pass
######## bar.pxd ########
cdef int func_noexcept_declared_in_pxd() noexcept
cdef int func_implicit_declared_in_pxd()
######## bar.pyx ########
cdef int func_noexcept() noexcept:
raise RuntimeError()
cdef int func_implicit():
raise RuntimeError()
cdef int func_noexcept_declared_in_pxd():
raise RuntimeError()
cdef int func_implicit_declared_in_pxd():
raise RuntimeError()
cdef int func_return_value() except -1:
raise RuntimeError()
func_noexcept()
func_implicit()
func_noexcept_declared_in_pxd()
func_implicit_declared_in_pxd()
try:
func_return_value()
except RuntimeError:
pass
else:
assert False, 'Exception not raised'
######## aa.pxd ########
cdef class Klass:
cpdef int m1(self, bint exc) except? -1
cpdef int m2(self, bint exc)
cpdef int m3(self, bint exc) noexcept
cpdef int m4(self, bint exc) except *
cpdef int m5(self, bint exc) except -1
cpdef object n1(self, bint exc)
cpdef object n2(self, bint exc) except *
cpdef object n3(self, bint exc) noexcept # will warn, but should work
cpdef void o1(self, bint exc)
cpdef void o2(self, bint exc) except*
cpdef void o3(self, bint exc) noexcept
cdef int p1(self, bint exc) except? -1
cdef int p2(self, bint exc)
cdef int p3(self, bint exc) noexcept
cdef int p4(self, bint exc) except *
cdef int p5(self, bint exc) except -1
cdef object q1(self, bint exc)
cdef object q2(self, bint exc) except *
cdef object q3(self, bint exc) noexcept # will warn, but should work
cdef void r1(self, bint exc)
cdef void r2(self, bint exc) except*
cdef void r3(self, bint exc) noexcept
cpdef int m1(bint exc) except? -1
cpdef int m2(bint exc)
cpdef int m3(bint exc) noexcept
cpdef int m4(bint exc) except *
cpdef int m5(bint exc) except -1
cpdef object n1(bint exc)
cpdef object n2(bint exc) except *
cpdef object n3(bint exc) noexcept # will warn, but should work
cpdef void o1(bint exc)
cpdef void o2(bint exc) except*
cpdef void o3(bint exc) noexcept
cdef int p1(bint exc) except? -1
cdef int p2(bint exc)
cdef int p3(bint exc) noexcept
cdef int p4(bint exc) except *
cdef int p5(bint exc) except -1
cdef object q1(bint exc)
cdef object q2(bint exc) except *
cdef object q3(bint exc) noexcept # will warn, but should work
cdef void r1(bint exc)
cdef void r2(bint exc) except*
cdef void r3(bint exc) noexcept
######## aa.py ########
class Klass:
def m1(self, exc):
if exc: raise ValueError()
return 1
def m2(self, exc):
if exc: raise ValueError()
return 2
def m3(self, exc):
if exc: raise ValueError()
return 3
def m4(self, exc):
if exc: raise ValueError()
return 4
def m5(self, exc):
if exc: raise ValueError()
return 5
def n1(self, exc):
if exc: raise ValueError()
return 'n1'
def n2(self, exc):
if exc: raise ValueError()
return 'n2'
def n3(self, exc):
if exc: raise ValueError()
return 'n3'
def o1(self, exc):
if exc: raise ValueError()
return
def o2(self, exc):
if exc: raise ValueError()
return
def o3(self, exc):
if exc: raise ValueError()
return
def p1(self, exc):
if exc: raise ValueError()
return 1
def p2(self, exc):
if exc: raise ValueError()
return 2
def p3(self, exc):
if exc: raise ValueError()
return 3
def p4(self, exc):
if exc: raise ValueError()
return 4
def p5(self, exc):
if exc: raise ValueError()
return 5
def q1(self, exc):
if exc: raise ValueError()
return 'q1'
def q2(self, exc):
if exc: raise ValueError()
return 'q2'
def q3(self, exc):
if exc: raise ValueError()
return 'q3'
def r1(self, exc):
if exc: raise ValueError()
return
def r2(self, exc):
if exc: raise ValueError()
return
def r3(self, exc):
if exc: raise ValueError()
return
def m1(exc):
if exc: raise ValueError()
return 1
def m2(exc):
if exc: raise ValueError()
return 2
def m3(exc):
if exc: raise ValueError()
return 3
def m4(exc):
if exc: raise ValueError()
return 4
def m5(exc):
if exc: raise ValueError()
return 5
def n1(exc):
if exc: raise ValueError()
return 'n1'
def n2(exc):
if exc: raise ValueError()
return 'n2'
def n3(exc):
if exc: raise ValueError()
return 'n3'
def o1(exc):
if exc: raise ValueError()
return
def o2(exc):
if exc: raise ValueError()
return
def o3(exc):
if exc: raise ValueError()
return
def p1(exc):
if exc: raise ValueError()
return 1
def p2(exc):
if exc: raise ValueError()
return 2
def p3(exc):
if exc: raise ValueError()
return 3
def p4(exc):
if exc: raise ValueError()
return 4
def p5(exc):
if exc: raise ValueError()
return 5
def q1(exc):
if exc: raise ValueError()
return 'q1'
def q2(exc):
if exc: raise ValueError()
return 'q2'
def q3(exc):
if exc: raise ValueError()
return 'q3'
def r1(exc):
if exc: raise ValueError()
return
def r2(exc):
if exc: raise ValueError()
return
def r3(exc):
if exc: raise ValueError()
return
|