Pure Python Mode¶
Cython provides language constructs to let the same file be either interpreted
or compiled. This is accomplished by the same “magic” module cython that
directives use and which must be imported. This is available for both .py and
.pyx files.
This is accomplished via special functions and decorators and an (optional)
augmenting .pxd file.
Magic Attributes¶
The currently supported attributes of the cython module are:
declaredeclares a typed variable in the current scope, which can be used in place of thecdef type var [= value]construct. This has two forms, the first as an assignment (useful as it creates a declaration in interpreted mode as well):x = cython.declare(cython.int) # cdef int x y = cython.declare(cython.double, 0.57721) # cdef double y = 0.57721
and the second mode as a simple function call:
cython.declare(x=cython.int, y=cython.double) # cdef int x; cdef double y
localsis a decorator that is used to specify the types of local variables in the function body (including any or all of the argument types):@cython.locals(a=cython.double, b=cython.double, n=cython.p_double) def foo(a, b, x, y): ...
addressis used in place of the&operator:cython.declare(x=cython.int, x_ptr=cython.p_int) x_ptr = cython.address(x)
sizeofemulates the sizeof operator. It can take both types and expressions.:cython.declare(n=cython.longlong) print cython.sizeof(cython.longlong), cython.sizeof(n)
structcan be used to create struct types.:MyStruct = cython.struct(x=cython.int, y=cython.int, data=cython.double) a = cython.declare(MyStruct)
is equivalent to the code:
cdef struct MyStruct: int x int y double data cdef MyStruct a
unioncreates union types with exactly the same syntax asstructtypedefcreates a new type:T = cython.typedef(cython.p_int) # ctypedef int* T
compiledis a special variable which is set toTruewhen the compiler runs, andFalsein the interpreter. Thus the code:if cython.compiled: print "Yep, I'm compiled." else: print "Just a lowly interpreted script."
will behave differently depending on whether or not the code is loaded as a compiled
.sofile or a plain.pyfile.
Augmenting .pxd¶
If a .pxd file is found with the same name as a .py file, it will be
searched for cdef classes and cdef/cpdef
functions and methods. It will then convert the corresponding
classes/functions/methods in the .py file to be of the correct type. Thus if
one had a.pxd:
cdef class A:
cpdef foo(self, int i)
the file a.py:
class A:
def foo(self, i):
print "Big" if i > 1000 else "Small"
would be interpreted as:
cdef class A:
cpdef foo(self, int i):
print "Big" if i > 1000 else "Small"
The special cython module can also be imported and used within the augmenting
.pxd file. This makes it possible to add types to a pure python file without
changing the file itself. For example, the following python file
dostuff.py:
def dostuff(n):
t = 0
for i in range(n):
t += i
return t
could be augmented with the following .pxd file dostuff.pxd:
import cython
@cython.locals(t = cython.int, i = cython.int)
cpdef int dostuff(int n)
Besides the cython.locals decorator, the cython.declare() function can also be
used to add types to global variables in the augmenting .pxd file.
Note that normal Python (def) functions cannot be declared in
.pxd files, so it is currently impossible to override the types of
Python functions in .pxd files if they use *args or **kwargs in their
signature, for instance.
Types¶
There are numerous types built in to the cython module. One has all the
standard C types, namely char, short, int, long, longlong
as well as their unsigned versions uchar, ushort, uint, ulong,
ulonglong. One also has bint and Py_ssize_t. For each type, one
has pointer types p_int, pp_int, . . ., up to three levels deep in
interpreted mode, and infinitely deep in compiled mode. The Python types int,
long and bool are interpreted as C int, long and bint
respectively. Also, the python types list, dict, tuple, . . . may
be used, as well as any user defined types.
Pointer types may be constructed with cython.pointer(cython.int), and
arrays as cython.int[10]. A limited attempt is made to emulate these more
complex types, but only so much can be done from the Python language.
Decorators (not yet implemented)¶
We have settled on @cython.cclass for the cdef class
decorators, and @cython.cfunc and @cython.ccall for cdef and
cpdef functions (respectively).
http://codespeak.net/pipermail/cython-dev/2008-November/002925.html