Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | MANT: Use Py_RETURN_NONE whenever Py_None is returned | Jaime Fernandez | 2015-04-24 | 1 | -2/+1 |
| | |||||
* | Merge pull request #5309 from rgommers/remove-f2py-deprecation | Charles Harris | 2015-01-06 | 1 | -3/+0 |
|\ | | | | | MAINT: remove NPY_NO_DEPRECATED_API define from f2py. | ||||
| * | MAINT: remove NPY_NO_DEPRECATED_API define from f2py. | Ralf Gommers | 2014-11-23 | 1 | -3/+0 |
| | | | | | | | | | | See gh-5281 for discussion. With the defines in, compiling scipy 0.14.0 and below isn't possible. | ||||
* | | Merge pull request #5287 from chatcannon/reconcile-c-api-with-docs | Julian Taylor | 2014-12-10 | 1 | -7/+10 |
|\ \ | |/ |/| | | | Reconcile C API with docs | ||||
| * | MAINT: cast PyArray_ITEMSIZE result to avoid warnings | Julian Taylor | 2014-12-10 | 1 | -3/+3 |
| | | | | | | | | return type depends on API version used | ||||
| * | MAINT: Update printf statements in fortranobject.c | Chris Kerr | 2014-12-10 | 1 | -5/+8 |
| | | | | | | | | Using NPY_INTP_FMT to format PyArray_ITEMSIZE | ||||
* | | MAINT: change place where NPY_NO_DEPRECATED_API is defined in f2py. | Ralf Gommers | 2014-11-16 | 1 | -0/+3 |
|/ | | | | | This makes sure to undef at the end, and by putting the define in the C code it ensures that the error message is understandable. | ||||
* | DEP: Corrected some type errors that appear when enabling NPY_NO_DEPRECATED_API | Chris Kerr | 2014-11-10 | 1 | -7/+7 |
| | |||||
* | DEP: Replaced NPY_[F,C]ARRAY with NPY_ARRAY_[F,C]ARRAY | Chris Kerr | 2014-11-10 | 1 | -4/+4 |
| | |||||
* | DEP: Using the internal PyArrayObject_fields API for the swap_arrays and ↵ | Chris Kerr | 2014-11-10 | 1 | -2/+5 |
| | | | | dump_attrs functions | ||||
* | DEP: Replaced arr->descr, arr->flags and arr->base with the PyArray_* functions | Chris Kerr | 2014-11-10 | 1 | -1/+1 |
| | |||||
* | DEP: replaced arr->dimensions with PyArray_DIMS(arr) or PyArray_DIM(arr,i) | Chris Kerr | 2014-11-10 | 1 | -11/+11 |
| | |||||
* | DEP: replaced arr->data with PyArray_DATA | Chris Kerr | 2014-11-10 | 1 | -1/+1 |
| | |||||
* | DEP: Replaced arr->nd with PyArray_NDIM in fortranobject.c | Chris Kerr | 2014-11-10 | 1 | -18/+18 |
| | |||||
* | MAINT: f2py: rewrite fortran_doc | Lars Buitinck | 2014-09-28 | 1 | -68/+124 |
| | | | | | | | | | Should not use sprintf, and certainly not with incorrect error checking (gh-5044). Entirely rewritten for readability. Also replaced a few sprintf calls that were just copying strings without interpretation by the simpler and possibly faster strcpy/strcat. (These need to be replaced by something more sensible.) | ||||
* | Changed the `goto fail` to a `return PyErr_NoMemory()` | Chris Kerr | 2014-09-04 | 1 | -1/+4 |
| | |||||
* | Add NULL check after malloc() in fortranobject.c | Chris Kerr | 2014-09-04 | 1 | -0/+1 |
| | |||||
* | BUG: #2408, Fix f2py Python 3 error message string bug. | Charles Harris | 2014-02-17 | 1 | -8/+6 |
| | | | | | | | | | | | | | | The original was generating an exception message and, after aliasing, calling PyBytes_AsString on a unicode string -> error. It was also leaking references, although that probably didn't matter in context. The fix here is on the cheap side, just use a C string for the message without including the extra information about the erroneous type that led to the exception. No test, I don't know how to evoke this error. Closes #2408. | ||||
* | MAINT: fix some f2py related build warnings. | Ralf Gommers | 2014-01-22 | 1 | -1/+1 |
| | |||||
* | ENH: f2py: generate docstrings in Numpy docstring format | Pauli Virtanen | 2012-11-17 | 1 | -1/+1 |
| | |||||
* | STY: f2py - replace macros in old_defines.h with new. | Charles Harris | 2012-02-04 | 1 | -2/+2 |
| | |||||
* | BUG: core: use PyCapsule objects only on Python >= 3.0, stay with PyCObjects ↵ | Pauli Virtanen | 2010-07-17 | 1 | -2/+2 |
| | | | | on Python 2.x | ||||
* | ENH, BUG: PyCObject will be deprecated in python 2.7. So use the NpyCapsule | Charles Harris | 2010-05-03 | 1 | -4/+4 |
| | | | | | | | compatibility functions in npy_3kcompat.h to replace the current calls. This gets rid of a number of version checks and is easier to maintain. Fix bug that was present in the ufunc _loop1d_list_free destructor in the python3k case. | ||||
* | 3K: f2py: port much of f2py C code to Py3 | Pauli Virtanen | 2010-03-06 | 1 | -3/+60 |
| | |||||
* | BUG: f2py: ensure that ARRAY_ISCOMPATIBLE macro handles also booleans | Pauli Virtanen | 2010-03-06 | 1 | -0/+1 |
| | |||||
* | ENH: Add support for PyCapsule. | Charles Harris | 2010-02-25 | 1 | -0/+55 |
| | |||||
* | Introduced intent(align4|align8|align16) attributes. Fixes scipy ticket 794 ↵ | Pearu Peterson | 2009-10-25 | 1 | -1/+10 |
| | | | | after using intent(align8) in the corresponding scipy pyf files. | ||||
* | Changed an idiom of appending strings to a buffer. Fixes numpy ticket 792. | Pearu Peterson | 2008-05-15 | 1 | -12/+39 |
| | |||||
* | Catch wrong array sizes when the length of an array is 1. | Pearu Peterson | 2008-01-25 | 1 | -7/+16 |
| | |||||
* | Fix whitespace to conform to Python 3000 convention. | Stefan van der Walt | 2007-08-21 | 1 | -602/+603 |
| | |||||
* | Fix some reference-count problems in f2py with data-type objects. | Travis Oliphant | 2006-10-30 | 1 | -12/+21 |
| | |||||
* | More f2py changes | Travis Oliphant | 2006-07-08 | 1 | -20/+20 |
| | |||||
* | More fixes to f2py | Travis Oliphant | 2006-07-08 | 1 | -4/+4 |
| | |||||
* | Fix f2py to use new names | Travis Oliphant | 2006-07-08 | 1 | -17/+17 |
| | |||||
* | Fix missing error check. | Travis Oliphant | 2006-04-27 | 1 | -0/+1 |
| | |||||
* | Fix f2py to handle character arrays in common blocks | Travis Oliphant | 2006-03-08 | 1 | -5/+27 |
| | |||||
* | Fixed f2py bug in calculating dims vector when expected rank equals to array ↵ | Pearu Peterson | 2006-01-25 | 1 | -29/+36 |
| | | | | rank. | ||||
* | Remove bad 'fix' for f2py | Travis Oliphant | 2006-01-24 | 1 | -2/+4 |
| | |||||
* | Comment change in fortranobject.c better. | Travis Oliphant | 2006-01-22 | 1 | -0/+4 |
| | |||||
* | Added LICENSE.txt to distribution. Fixed f2py check_and_fix_dimensions to ↵ | Travis Oliphant | 2006-01-22 | 1 | -0/+14 |
| | | | | not reverse dimensions. | ||||
* | Fixed up PyArray_FromAny and friends for API --- recompile extensions... | Travis Oliphant | 2006-01-19 | 1 | -1/+1 |
| | |||||
* | Moved scipy directory to numpy | Travis Oliphant | 2006-01-04 | 1 | -0/+756 |