summaryrefslogtreecommitdiff
path: root/numpy/f2py/src
Commit message (Collapse)AuthorAgeFilesLines
* BUG: Choose a more unique PY_ARRAY_UNIQUE_SYMBOL in f2py.Bradley M. Froehle2013-02-241-1/+1
| | | | | | | | | | | | | In a few exceptional cases where symbols are shared between different Python modules the use of `PyArray_API` in f2py (fortranobject.h) conflicts with the regular use of the same symbol in the multiarray module. Generally the symptom of this conflicting use is a segfault when importing a f2py'ed module. This occurs because the module init code somehow overwrites the first element of `PyArray_API` with the location of `PyArray_API`, causing a crash when `PyArray_GetNDArrayCVersion` is called. Closes gh-2521.
* 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-042-9/+9
|
* BUG: core: use PyCapsule objects only on Python >= 3.0, stay with PyCObjects ↵Pauli Virtanen2010-07-172-3/+3
| | | | on Python 2.x
* ENH, BUG: PyCObject will be deprecated in python 2.7. So use the NpyCapsuleCharles Harris2010-05-032-6/+6
| | | | | | | 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 Py3Pauli Virtanen2010-03-062-6/+89
|
* BUG: f2py: ensure that ARRAY_ISCOMPATIBLE macro handles also booleansPauli Virtanen2010-03-061-0/+1
|
* ENH: Add support for PyCapsule.Charles Harris2010-02-252-1/+70
|
* Introduced intent(align4|align8|align16) attributes. Fixes scipy ticket 794 ↵Pearu Peterson2009-10-252-1/+24
| | | | after using intent(align8) in the corresponding scipy pyf files.
* Changed an idiom of appending strings to a buffer. Fixes numpy ticket 792.Pearu Peterson2008-05-151-12/+39
|
* Catch wrong array sizes when the length of an array is 1.Pearu Peterson2008-01-251-7/+16
|
* Fix whitespace to conform to Python 3000 convention.Stefan van der Walt2007-08-212-667/+669
|
* Fix some reference-count problems in f2py with data-type objects.Travis Oliphant2006-10-301-12/+21
|
* Fix f2py and docTravis Oliphant2006-07-081-1/+1
|
* More f2py changesTravis Oliphant2006-07-081-20/+20
|
* More fixes to f2pyTravis Oliphant2006-07-081-4/+4
|
* Fix f2py to use new namesTravis Oliphant2006-07-082-21/+21
|
* Fix missing error check.Travis Oliphant2006-04-271-0/+1
|
* Fix f2py to handle character arrays in common blocksTravis Oliphant2006-03-082-5/+28
|
* Fixed f2py bug in calculating dims vector when expected rank equals to array ↵Pearu Peterson2006-01-251-29/+36
| | | | rank.
* Remove bad 'fix' for f2pyTravis Oliphant2006-01-241-2/+4
|
* Comment change in fortranobject.c better.Travis Oliphant2006-01-221-0/+4
|
* Added LICENSE.txt to distribution. Fixed f2py check_and_fix_dimensions to ↵Travis Oliphant2006-01-221-0/+14
| | | | not reverse dimensions.
* Fixed up PyArray_FromAny and friends for API --- recompile extensions...Travis Oliphant2006-01-191-1/+1
|
* Changed all references to scipy to numpyTravis Oliphant2006-01-041-1/+1
|
* Moved scipy directory to numpyTravis Oliphant2006-01-048-0/+1223