summaryrefslogtreecommitdiff
path: root/numpy/f2py/cfuncs.py
Commit message (Expand)AuthorAgeFilesLines
* BUG: revise string_from_pyobj/try_pyarr_from_string with respect to malloc an...Pearu Peterson2021-06-151-52/+128
* Revert "BUG: revise string_from_pyobj/try_pyarr_from_string with respect to m...Ralf Gommers2021-06-131-101/+52
* Minor fixesPearu Peterson2021-05-261-1/+1
* Add internal check for array contiguity.Pearu Peterson2021-05-261-0/+1
* MAINT: apply sizeof(char)==1Pearu Peterson2021-05-261-2/+2
* Apply reviewer nitPearu Peterson2021-05-231-2/+1
* Fix lintPearu Peterson2021-05-231-1/+2
* Apply reviewers comments. Thanks to @eric-wieser!Pearu Peterson2021-05-231-31/+9
* BUG: revise string_from_pyobj/try_pyarr_from_string usages, fixes #18431.Pearu Peterson2021-05-101-46/+116
* BUG FIX for MINGW : threads.h existence test requires GLIBC > 2.12Dong Keun Oh2021-05-051-1/+3
* BUG: Fix refcount leak in f2py `complex_double_from_pyobj`Sebastian Berg2021-02-171-0/+1
* BUG: threads.h existence test requires GLIBC > 2.12. (#18180)Pearu Peterson2021-01-191-1/+6
* MAINT: Cleanup f2py/cfuncs.pyCharles Harris2020-09-211-86/+164
* Merge pull request #17292 from charris/cleanup-remaining-pystring-macrosSebastian Berg2020-09-121-3/+3
|\
| * MAINT: Replace remaining PyString macros.Charles Harris2020-09-111-3/+3
* | MAINT: Replace PyNumber_Int by PyNumber_LongCharles Harris2020-09-121-2/+2
* | MAINT: Replace PyInt_FromLong by PyLong_FromLong.Charles Harris2020-09-111-3/+3
|/
* MAINT: Replace PyStringObject by PyBytesObject.Charles Harris2020-09-101-1/+1
* MAINT: Replace PyString_Check with PyBytes_Check.Charles Harris2020-09-101-7/+7
* MAINT: Remove uses of PyString_FromString.Charles Harris2020-08-191-2/+2
* MAINT: f2py: move thread-local declaration definition to common macroPauli Virtanen2020-06-081-0/+15
* BUG, TST: fix f2py for PyPy, skip one test for PyPy (#15750)Matti Picus2020-03-181-0/+6
* MAINT: remove useless `global` statementsEric Wieser2020-03-181-2/+2
* convert shebang from python to python3 (#15687)Changqing Li2020-03-041-1/+1
* Merge pull request #15232 from sethtroisi/remove_python3_part3Matti Picus2020-01-041-16/+0
|\
| * Cleaning up PY_MAJOR_VERSION/PY_VERSION_HEXSeth Troisi2020-01-031-16/+0
* | MAINT: Remove unnecessary 'from __future__ import ...' statementsJon Dufresne2020-01-031-2/+0
|/
* DOC: fix outstanding typo in NumPy versionmattip2019-12-031-1/+1
* BUG: Further, followup f2py reference count fixesSebastian Berg2019-08-191-5/+18
* DOC: update or remove outdated sourceforge linksmattip2019-08-081-1/+1
* DOC: fix minor typosUnknown2017-12-121-1/+1
* MAINT: Use the PyArray_(GET|SET)_ITEM functions where possibleEric Wieser2017-09-231-4/+4
* MAINT: Replace tab escapes with four spacesEric Wieser2017-07-121-500/+500
* MAINT: remove usage of NPY_CHAR from f2pyJulian Taylor2017-05-021-1/+2
* STY: Make PEP8 fixes in numpy/f2pyCharles Harris2015-07-251-222/+259
* DEP: Replace NPY_CONTIGUOUS with NPY_ARRAY_C_CONTIGUOUSChris Kerr2014-11-101-1/+1
* 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-101-16/+16
* DEP: replaced arr->dimensions with PyArray_DIMS(arr) or PyArray_DIM(arr,i)Chris Kerr2014-11-101-3/+3
* DEP: replaced arr->data with PyArray_DATAChris Kerr2014-11-101-49/+49
* DEP: replaced arr->nd with PyArray_NDIM in C code generation scriptsChris Kerr2014-11-101-5/+5
* Merge pull request #4305 from charris/fix-gh-4256Charles Harris2014-02-201-1/+1
|\
| * BUG: #4256: f2py, PyString_FromStringAndSize is undefined in Python3.Charles Harris2014-02-161-1/+1
* | BUG: Fix typo in f2py/cfuncs.py.Charles Harris2014-02-161-1/+1
|/
* BUG: f2py, fix decref on wrong objectJulian Taylor2013-09-121-2/+3
* STY: Giant comma spacing fixup.Charles Harris2013-08-181-32/+32
* MAINT: Apply 2to3 idioms fixer.Charles Harris2013-05-021-4/+4
* 2to3: Apply types fixer.Charles Harris2013-04-141-9/+7
* 2to3: Apply `map` fixer.Charles Harris2013-04-101-1/+1
* 2to3: Apply `repr` fixer.Charles Harris2013-04-081-2/+2