summaryrefslogtreecommitdiff
path: root/numpy/doc/cython
Commit message (Collapse)AuthorAgeFilesLines
* Move documentation outside of source tree. Remove `doc` import from __init__.Stefan van der Walt2008-08-238-436/+0
|
* Put import_array() back into the .pyx file.Fernando Perez2008-06-202-14/+16
| | | | | | | M. Brett noticed that if it's only in the .pxd file, it does NOT get included in the auto-generated C code, and will thus not be called at module initialization time.
* Move the import_array() call directly into c_numpy.pxd.Fernando Perez2008-06-202-6/+16
| | | | | This makes the user-visible API for Cython usage simpler and closer to the Python one.
* Updated Cython code to use .pxd files with cimport instead of .pxi/include.Fernando Perez2008-06-194-21/+21
| | | | | Using cimport/pxd is the currently recommended approach by the Cython team.
* Add up to date (and slightly cleaned up) support for Cython after portingFernando Perez2008-04-098-0/+424
the existing Pyrex one, put in deprecation markers in the old Pyrex dir. The pyrex dir can be removed in a subsequent commit.