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
|
# mode: run
# cython: language_level=3
# This file tests that methodmangling is applied correctly to
# pure Python decorated classes.
import cython
if cython.compiled:
# don't run in Python mode since a significant number of the tests
# are only for Cython features
def declare(**kwargs):
return kwargs['__x']
class RegularClass:
@cython.locals(__x=cython.int)
def f1(self, __x, dummy=None):
"""
Is the locals decorator correctly applied
>>> c = RegularClass()
>>> c.f1(1)
1
>>> c.f1("a")
Traceback (most recent call last):
...
TypeError: an integer is required
>>> c.f1(_RegularClass__x = 1)
1
"""
return __x
def f2(self, x):
"""
Is the locals decorator correctly applied
>>> c = RegularClass()
>>> c.f2(1)
1
>>> c.f2("a")
Traceback (most recent call last):
...
TypeError: an integer is required
"""
__x = cython.declare(cython.int, x)
return __x
def f3(self, x):
"""
Is the locals decorator correctly applied
>>> c = RegularClass()
>>> c.f3(1)
1
>>> c.f3("a")
Traceback (most recent call last):
...
TypeError: an integer is required
"""
cython.declare(__x=cython.int)
__x = x
return __x
def f4(self, x):
"""
We shouldn't be tripped up by a function called
"declare" that is nothing to do with cython
>>> RegularClass().f4(1)
1
"""
return declare(__x=x)
else:
__doc__ = """
>>> True
True
""" # stops Python2 from failing
|