summaryrefslogtreecommitdiff
path: root/numpy/f2py/tests/src
Commit message (Collapse)AuthorAgeFilesLines
* DEP: removed deprecated API calls from test code (wrapmodule.c)Chris Kerr2014-11-101-31/+31
|
* TST: Add basic test for compiling with intent(in out).Charles Harris2014-10-091-0/+9
| | | | | This checks that the compilation works and that the expected error is raised when non-contiguous arrays are passed as intent(in out).
* Use PyMODINIT_FUNC and update docs accordingly.cgohlke2012-09-021-1/+1
| | | | See https://github.com/scipy/scipy/pull/279
* STY: f2py - replace macros in old_defines.h with new.Charles Harris2012-02-041-26/+26
|
* BUG: Fix two argument size support for Fortran module routines. Reverted ↵Pearu Peterson2011-05-061-0/+30
| | | | size-to-shape mapping patch and implemented two argument size function in C.
* BUG: Fix assumed shape support for module routines.Pearu Peterson2011-05-061-0/+41
|
* BUG: Fix memory leak in f2py_rout_wrap_call test.Michael Droettboom2011-05-021-1/+3
|
* ENH: f2py: support Fortran size function with two arguments (ticket #1765).Pearu Peterson2011-03-131-0/+14
|
* Implemented selected_real_kind evaluation, added tests to catch processor ↵Pearu Peterson2011-02-271-0/+20
| | | | dependencies..
* Fix assumed shape support for routines that use modules. Improved ↵Pearu Peterson2011-02-273-0/+24
| | | | .f2py_f2cmap messages.
* WIP: implemented assumed shape support for Fortran subroutines.Pearu Peterson2011-02-261-3/+3
|
* WIP: added assumed shape array support to Fortran functions.Pearu Peterson2011-02-251-0/+34
|
* 3K: f2py: port the array_from_pyobj test module to Py3Pauli Virtanen2010-03-061-1/+26
|
* ENH: f2py: convert test suite to Nose formPauli Virtanen2010-03-064-0/+217
Rewrite F2Py's test suite, so that it is run as a part of Numpy's tests. These tests require compiling extension modules on-the-fly, so I added a small helper module for that.