summaryrefslogtreecommitdiff
path: root/numpy/f2py
Commit message (Expand)AuthorAgeFilesLines
* MAINT: Change `call_fortran` into `callfortran` in comments.Dongjoon Hyun2016-01-291-1/+1
* MAINT: Fix some typos in a code string and commentsDongjoon Hyun2016-01-273-6/+6
* MAINT, STY: Removed unused variable in f2py/f90mod_rules.pyrehassachdeva2016-01-071-1/+1
* Merge pull request #6886 from charris/use-temppathCharles Harris2016-01-021-20/+12
|\
| * MAINT: Simplify some tests using temppath context manager.Charles Harris2015-12-261-20/+12
* | [TST] Refactor new raise_warnings logic for subpackage test suitesNathaniel J. Smith2015-12-301-3/+3
|/
* MAINT: Remove commented out code blocksgfyoung2015-12-201-4/+0
* DOC: Use print only as function when print_function is imported from __future__gfyoung2015-12-191-1/+1
* DOC: Some documentation fixups.Charles Harris2015-12-171-0/+2
* BUG,ENH: Add extension parameter to f2py.compile and fix verbose.Alex Rogozhnikov2015-12-171-9/+25
* MAINT: Include from __future__ boilerplate in some files missing it.Charles Harris2015-12-051-0/+2
* ENH: testing: add SkipTest and KnownFailureExceptionEvgeni Burovski2015-11-162-9/+6
* MAINT: Dictionary litteralRémy Léone2015-11-071-4/+2
* BUG: Revert some import * fixes in f2py.Charles Harris2015-10-263-22/+15
* Merge pull request #6488 from charris/cleanup-6306Charles Harris2015-10-161-5/+2
|\
| * BUG: allow extension of common blocks in numpy.f2pyAlexander Heger2015-10-161-5/+2
* | BUG: Allow nested use of parameters for array dimensions in f2py.Alexander Heger2015-10-161-3/+4
|/
* STY: Break some long lines in numpy/f2py/*.py.Charles Harris2015-07-298-122/+50
* STY: PEP8 fixes in numpy/f2py/tests.Charles Harris2015-07-256-24/+46
* STY: Make PEP8 fixes in numpy/f2pyCharles Harris2015-07-2515-3233/+4047
* STY: Make pyflakes fixes in numpy/f2pyCharles Harris2015-07-2512-273/+405
* STY: PEP8 and pyflakes fixes for numpy/f2py/tests.Charles Harris2015-07-2511-258/+298
* BUG: revert use of !python for bdist_mpkg scriptsMatthew Brett2015-05-051-1/+1
* ENH: add bdist_mpkg, bdist_wininst to binary distsMatthew Brett2015-04-291-2/+3
* BUG: fix f2py shebang line for bdist wheel, eggMatthew Brett2015-04-291-1/+14
* MANT: Use Py_RETURN_NONE whenever Py_None is returnedJaime Fernandez2015-04-241-2/+1
* Merge pull request #5565 from juliantaylor/pep338-f2pyJulian Taylor2015-03-092-26/+27
|\
| * ENH: make f2py an executable moduleJulian Taylor2015-03-082-26/+27
* | BUG: Cannot read .f2py_f2cmaps under python 3.3David Powell2015-03-061-4/+4
|/
* Merge pull request #5309 from rgommers/remove-f2py-deprecationCharles Harris2015-01-062-5/+0
|\
| * MAINT: remove NPY_NO_DEPRECATED_API define from f2py.Ralf Gommers2014-11-232-5/+0
* | Merge pull request #5287 from chatcannon/reconcile-c-api-with-docsJulian Taylor2014-12-101-7/+10
|\ \ | |/ |/|
| * MAINT: cast PyArray_ITEMSIZE result to avoid warningsJulian Taylor2014-12-101-3/+3
| * MAINT: Update printf statements in fortranobject.cChris Kerr2014-12-101-5/+8
* | MAINT: change place where NPY_NO_DEPRECATED_API is defined in f2py.Ralf Gommers2014-11-163-2/+6
|/
* DEP: #declaring NPY_NO_DEPRECATED_API in fortranobject.hChris Kerr2014-11-101-0/+2
* DEP: removed deprecated API calls from test code (wrapmodule.c)Chris Kerr2014-11-101-31/+31
* DEP: Replace NPY_CONTIGUOUS with NPY_ARRAY_C_CONTIGUOUSChris Kerr2014-11-102-2/+2
* DEP: Corrected some type errors that appear when enabling NPY_NO_DEPRECATED_APIChris Kerr2014-11-101-7/+7
* DEP: Replaced NPY_[F,C]ARRAY with NPY_ARRAY_[F,C]ARRAYChris Kerr2014-11-102-6/+6
* DEP: Using the internal PyArrayObject_fields API for the swap_arrays and dump...Chris Kerr2014-11-101-2/+5
* DEP: Using PyArray_SIZE and PyArray_TYPE instead of PyArray_DESCR()->elsize etcChris Kerr2014-11-101-5/+5
* DEP: Replaced arr->descr, arr->flags and arr->base with the PyArray_* functionsChris Kerr2014-11-104-20/+20
* DEP: replaced arr->dimensions with PyArray_DIMS(arr) or PyArray_DIM(arr,i)Chris Kerr2014-11-103-15/+15
* DEP: replaced arr->data with PyArray_DATAChris Kerr2014-11-104-52/+52
* DEP: replaced arr->nd with PyArray_NDIM in C code generation scriptsChris Kerr2014-11-102-7/+7
* DEP: Replaced arr->nd with PyArray_NDIM in fortranobject.cChris Kerr2014-11-101-18/+18
* MAINT: remove obsolete version checksJulian Taylor2014-10-151-17/+15
* Merge pull request #5168 from charris/f2py-space-fixCharles Harris2014-10-103-4/+47
|\
| * TST: Add basic test for compiling with intent(in out).Charles Harris2014-10-092-0/+41