Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Merge remote branch 'upstream/master' into f2py-assumed-shape | Pearu Peterson | 2011-03-11 | 1 | -11/+19 | |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * upstream/master: (310 commits) REL: add 1.6.0 release notes. DEP: remove deprecated np.lib.ufunclike.log2 function. DOC: fix typo in test guidelines. DEP: remove deprecated items from ma/core.py DEP: remove deprecated get_numpy_include. DEP: remove unique1d, setmember1d and intersect1d_nu. DEP: remove deprecated names in fftpack. DEP: remove deprecated methods sync() and close() from memmap. DEP: Update deprecation messages in genloadtxt with a version number. BLD: update C API version again after Mark's renaming of functions. DOC: Replace 'deprecated' with 'superceded' in a few places, fix a typo. STY: Remove a micro-optimization to make code more clear DOC: Add some missing documentation, hyper-link the iterator documentation API: Remove PyArray_FillWithZero from public API API: Rename the iterator function pointer types to be more consistent with NumPy convention STY: Work around lack of variadic macros in debug tracing API: Change iterator API parameters ndim and niter from npy_intp to int ENH: add Intel 64-bit C compiler. Closes #960. TST: fix two divide-by-zero test warnings. BUG: Broadcast shape was backwards in error message (Ticket #1762) ... | |||||
| * | BUG: Fixes ticket 1693. | Pearu Peterson | 2010-12-03 | 1 | -4/+9 | |
| | | ||||||
| * | BUG: Fix ticket 1679. | Pearu Peterson | 2010-12-02 | 1 | -7/+10 | |
| | | ||||||
* | | Fix bug in constructing use statement with only. | Pearu Peterson | 2011-02-28 | 1 | -1/+1 | |
| | | ||||||
* | | Implemented selected_real_kind evaluation, added tests to catch processor ↵ | Pearu Peterson | 2011-02-27 | 1 | -2/+11 | |
| | | | | | | | | dependencies.. | |||||
* | | Implemented selected_real_kind evaluation, added tests to catch processor ↵ | Pearu Peterson | 2011-02-27 | 2 | -0/+54 | |
| | | | | | | | | dependencies.. | |||||
* | | Fix assumed shape support for routines that use modules. Improved ↵ | Pearu Peterson | 2011-02-27 | 7 | -7/+55 | |
| | | | | | | | | .f2py_f2cmap messages. | |||||
* | | WIP: implemented assumed shape support for Fortran subroutines. | Pearu Peterson | 2011-02-26 | 5 | -32/+157 | |
| | | ||||||
* | | WIP: added assumed shape array support to Fortran functions. | Pearu Peterson | 2011-02-25 | 4 | -15/+106 | |
|/ | ||||||
* | BUG: f2py: fix creating string object from callback function using string size. | Pearu Peterson | 2010-10-16 | 2 | -2/+4 | |
| | ||||||
* | BUG: f2py: fix building modules via 'f2py -c' (broken in e6eafde) | Pauli Virtanen | 2010-10-06 | 1 | -2/+4 | |
| | ||||||
* | BUGLET: Need "\\n" in string template. | Charles Harris | 2010-09-23 | 1 | -2/+2 | |
| | ||||||
* | FIX: And add missing \n for error message. | Charles Harris | 2010-09-22 | 1 | -1/+1 | |
| | ||||||
* | BUG: Fix previous fix to numpy/g2py/setup.py. | Charles Harris | 2010-09-22 | 1 | -1/+1 | |
| | ||||||
* | BUG: Fix generated f2py bootstrap script to work with python 3k. | Charles Harris | 2010-09-22 | 1 | -2/+2 | |
| | | | | Thanks to Lisandro Dalcin. | |||||
* | FEAT: add C module and f2py fortran wrapper output customization from ↵ | David Cournapeau | 2010-09-17 | 3 | -6/+25 | |
| | | | | command line. | |||||
* | f2py: fixed issue 1533 (scanning pyf files will report lines that do not ↵ | Pearu Peterson | 2010-07-24 | 1 | -1/+1 | |
| | | | | match known patterns). | |||||
* | 3K: f2py: catch a misc import error | Pauli Virtanen | 2010-07-17 | 1 | -1/+1 | |
| | ||||||
* | BUG: core: use PyCapsule objects only on Python >= 3.0, stay with PyCObjects ↵ | Pauli Virtanen | 2010-07-17 | 2 | -3/+3 | |
| | | | | on Python 2.x | |||||
* | f2py: fixed typos in TRYCOMPLEXPYARRAYTEMPLATE. | Pearu Peterson | 2010-07-11 | 1 | -4/+1 | |
| | ||||||
* | BUG: f2py: replace a string exception with a real one (fixes #1515) | Pauli Virtanen | 2010-06-19 | 1 | -1/+2 | |
| | ||||||
* | ENH, BUG: PyCObject will be deprecated in python 2.7. So use the NpyCapsule | Charles Harris | 2010-05-03 | 2 | -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. | |||||
* | TST: mark slow f2py tests + add f2py test function. | David Cournapeau | 2010-03-31 | 8 | -0/+17 | |
| | ||||||
* | 3K: f2py: make create_cb_arglist work with Py3 functions | Pauli Virtanen | 2010-03-06 | 1 | -0/+10 | |
| | ||||||
* | 3K: f2py: port the array_from_pyobj test module to Py3 | Pauli Virtanen | 2010-03-06 | 2 | -2/+27 | |
| | ||||||
* | BUG: f2py: fix infinite loops in *_from_pyobj with unicode input | Pauli Virtanen | 2010-03-06 | 1 | -5/+5 | |
| | ||||||
* | 3K: f2py: port much of f2py C code to Py3 | Pauli Virtanen | 2010-03-06 | 5 | -20/+153 | |
| | ||||||
* | 3K: f2py: don't use test generators in the tests -- they don't really work ↵ | Pauli Virtanen | 2010-03-06 | 5 | -67/+26 | |
| | | | | on Nose on Py3 | |||||
* | 3K: f2py: map PyString -> PyBytes and PyInt -> PyLong on Py3 | Pauli Virtanen | 2010-03-06 | 1 | -0/+9 | |
| | ||||||
* | 3K: f2py: address a semantic difference between Py2 and Py3 | Pauli Virtanen | 2010-03-06 | 1 | -1/+2 | |
| | ||||||
* | BUG: f2py: fix F90 detection in the tests | Pauli Virtanen | 2010-03-06 | 1 | -2/+2 | |
| | ||||||
* | 3K: f2py: make f2py run far enough to produce output files (they don't ↵ | Pauli Virtanen | 2010-03-06 | 5 | -37/+41 | |
| | | | | compile yet, though, as the C code is not Py3 compatible) | |||||
* | ENH: f2py: skip also test_array_from_pyobj if no C compiler is available | Pauli Virtanen | 2010-03-06 | 1 | -0/+7 | |
| | ||||||
* | BUG: f2py: ensure that ARRAY_ISCOMPATIBLE macro handles also booleans | Pauli Virtanen | 2010-03-06 | 1 | -0/+1 | |
| | ||||||
* | ENH: f2py: convert test suite to Nose form | Pauli Virtanen | 2010-03-06 | 30 | -1685/+1391 | |
| | | | | | | Rewrite F2Py's test suite, so that it is run as a part of Numpy's tests. These tests require compiling extension modules on-the-fly, so I added a small helper module for that. | |||||
* | ENH: Add support for PyCapsule. | Charles Harris | 2010-02-25 | 5 | -7/+76 | |
| | ||||||
* | BUG: Fix imports in diagnose and excise old crap. | Charles Harris | 2010-02-25 | 1 | -32/+14 | |
| | ||||||
* | ENH: Add diagnose to f2py package. This makes the tests a bit easier to fix. | Charles Harris | 2010-02-25 | 1 | -2/+4 | |
| | ||||||
* | BUG: Shoddy quick fix of some f2py tests so they run. The tests expose errors, | Charles Harris | 2010-02-25 | 5 | -43/+95 | |
| | | | | | but the errors look like artifacts of an unfinished refactoring and partial update to support numpy. | |||||
* | 3K: BUG: work around bugs in Python 3.1.1 2to3 by not using fixes_reduce | Pauli Virtanen | 2010-02-20 | 1 | -0/+3 | |
| | | | | Instead, manually import reduce where necessary. | |||||
* | 3K: f2py: use integer division to avoid problems with string multiplication | Pauli Virtanen | 2010-02-20 | 1 | -1/+1 | |
| | ||||||
* | 3K: f2py: break cyclic imports (which are not allowed on Py3) by moving them ↵ | Pauli Virtanen | 2010-02-20 | 2 | -2/+3 | |
| | | | | to functions | |||||
* | Make f2py setup.py runnable under python3. | David Cournapeau | 2009-12-03 | 1 | -1/+1 | |
| | ||||||
* | Disable 7712 patch. | Pearu Peterson | 2009-11-10 | 1 | -1/+1 | |
| | ||||||
* | f2py: fix a code generation bug when callback function is taking arguments ↵ | Pearu Peterson | 2009-11-09 | 2 | -32/+36 | |
| | | | | with the same symbol name. | |||||
* | BUG Fix ticket #1285. Problem located by cgranade. | Charles Harris | 2009-11-06 | 1 | -1/+1 | |
| | ||||||
* | Introduced intent(align4|align8|align16) attributes. Fixes scipy ticket 794 ↵ | Pearu Peterson | 2009-10-25 | 4 | -3/+36 | |
| | | | | after using intent(align8) in the corresponding scipy pyf files. | |||||
* | Replace \r by \n. | Charles Harris | 2009-10-24 | 2 | -1131/+1128 | |
| | ||||||
* | BUG: fix f2py generated code for MSVC 9. | David Cournapeau | 2009-09-21 | 1 | -0/+4 | |
| | | | | | MSVC already define min/max macros in standard headers, which causes trouble when f2py redefines them. | |||||
* | Remove useless f2py debug print. | David Cournapeau | 2009-09-15 | 1 | -2/+0 | |
| |