summaryrefslogtreecommitdiff
path: root/numpy/f2py/src/fortranobject.c
Commit message (Expand)AuthorAgeFilesLines
* Removing extra comment.MelissaWM2020-09-261-1/+1
* Adding PR review comment.MelissaWM2020-09-241-0/+1
* BUG: Fixes module data docstrings.MelissaWM2020-09-241-2/+4
* BUG: numpy/f2py: put callback globals to thread-local storagePauli Virtanen2020-06-071-0/+62
* MAINT: Use `.identifier = val` to fill type structsSebastian Berg2020-02-011-15/+7
* BUG: Use PyDict_GetItemWithError() instead of PyDict_GetItem()Eric Wieser2020-01-141-2/+5
* MAINT: C code simplificationSeth Troisi2020-01-081-7/+5
* MAINT: Cleaning up more PY_VERSION_HEXSeth Troisi2020-01-061-25/+0
* MAINT: Improve const-correctness of shapes and stridesEric Wieser2020-01-061-1/+1
* Cleaning up PY_MAJOR_VERSION/PY_VERSION_HEXSeth Troisi2020-01-031-36/+0
* ENH: Show the incorrect type in the fortran error messageEric Wieser2019-12-011-3/+4
* BUG: General fixes to f2py reference counts (dereferencing)Sebastian Berg2019-08-191-10/+27
* BUG: Fix leak in the f2py-generated module init and `PyMem_Del` usageSergei Lebedev2019-08-191-2/+5
* MAINT: f2py: Add a cast to avoid a compiler warning.Warren Weckesser2019-04-051-1/+1
* MAINT: Misc. typos (#11005)luzpaz2018-04-301-1/+1
* MAINT: Hard tab and whitespace cleanup.Charles Harris2018-03-081-42/+43
* DOC: fix minor typosUnknown2017-12-121-3/+3
* f2py: rename internal functionNico Schlömer2017-08-281-3/+3
* f2py: allow Fortran arrays of dimension 0Nico Schlömer2017-08-281-1/+1
* BUG: f2py: Convert some error messages printed to stderr to exceptions.Warren Weckesser2017-08-261-38/+70
* BUG: ')' is printed at the end pointer of the buffer in numpy.f2py.Bob Eldering2017-07-051-2/+1
* ENH: Spelling fixesVille Skyttä2017-05-091-1/+1
* MAINT: remove usage of NPY_CHAR from f2pyJulian Taylor2017-05-021-4/+24
* MANT: Use Py_RETURN_NONE whenever Py_None is returnedJaime Fernandez2015-04-241-2/+1
* Merge pull request #5309 from rgommers/remove-f2py-deprecationCharles Harris2015-01-061-3/+0
|\
| * MAINT: remove NPY_NO_DEPRECATED_API define from f2py.Ralf Gommers2014-11-231-3/+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-161-0/+3
|/
* 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-101-4/+4
* DEP: Using the internal PyArrayObject_fields API for the swap_arrays and dump...Chris Kerr2014-11-101-2/+5
* DEP: Replaced arr->descr, arr->flags and arr->base with the PyArray_* functionsChris Kerr2014-11-101-1/+1
* DEP: replaced arr->dimensions with PyArray_DIMS(arr) or PyArray_DIM(arr,i)Chris Kerr2014-11-101-11/+11
* DEP: replaced arr->data with PyArray_DATAChris Kerr2014-11-101-1/+1
* DEP: Replaced arr->nd with PyArray_NDIM in fortranobject.cChris Kerr2014-11-101-18/+18
* MAINT: f2py: rewrite fortran_docLars Buitinck2014-09-281-68/+124
* Changed the `goto fail` to a `return PyErr_NoMemory()`Chris Kerr2014-09-041-1/+4
* Add NULL check after malloc() in fortranobject.cChris Kerr2014-09-041-0/+1
* BUG: #2408, Fix f2py Python 3 error message string bug.Charles Harris2014-02-171-8/+6
* MAINT: fix some f2py related build warnings.Ralf Gommers2014-01-221-1/+1
* ENH: f2py: generate docstrings in Numpy docstring formatPauli Virtanen2012-11-171-1/+1
* STY: f2py - replace macros in old_defines.h with new.Charles Harris2012-02-041-2/+2
* BUG: core: use PyCapsule objects only on Python >= 3.0, stay with PyCObjects ...Pauli Virtanen2010-07-171-2/+2
* ENH, BUG: PyCObject will be deprecated in python 2.7. So use the NpyCapsuleCharles Harris2010-05-031-4/+4
* 3K: f2py: port much of f2py C code to Py3Pauli Virtanen2010-03-061-3/+60
* BUG: f2py: ensure that ARRAY_ISCOMPATIBLE macro handles also booleansPauli Virtanen2010-03-061-0/+1
* ENH: Add support for PyCapsule.Charles Harris2010-02-251-0/+55
* Introduced intent(align4|align8|align16) attributes. Fixes scipy ticket 794 a...Pearu Peterson2009-10-251-1/+10