| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | 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 | |
| | | ||||||
| * | f2py: fix a bug evaluating parameters with kind function: kind(1.0), ↵ | Pearu Peterson | 2009-07-27 | 1 | -2/+2 | |
| | | | | | kind(1.0d) must be 4, 8, respectively. | |||||
| * | f2py: ignore concatenation of strings in initexpressions. | Pearu Peterson | 2009-04-21 | 1 | -1/+1 | |
| | | ||||||
| * | Python 3000 fixes for 2to3 [patch by James Watson]. | Stefan van der Walt | 2009-03-02 | 1 | -6/+15 | |
| | | ||||||
| * | Fix hyphen (patch from debian package). | David Cournapeau | 2009-02-10 | 1 | -10/+10 | |
| | | ||||||
| * | Avoid putting things into stderr when errors occurs in f2py wrappers; put ↵ | David Cournapeau | 2009-01-08 | 1 | -4/+6 | |
| | | | | | all the info in the python error string instead. | |||||
| * | ran reindent | Jarrod Millman | 2008-12-31 | 1 | -1/+1 | |
| | | ||||||
| * | Fix issue 964: f2py python 2.6, 2.6.1 support. | Pearu Peterson | 2008-12-23 | 1 | -1/+11 | |
| | | ||||||
| * | Fix a bug. | Pearu Peterson | 2008-12-22 | 1 | -2/+2 | |
| | | ||||||
| * | Removed unused/redundant imports. | Alan McIntyre | 2008-09-18 | 11 | -30/+7 | |
| | | | | | PEP8 conformance (only one import per line). | |||||
| * | Fix typo. | Pearu Peterson | 2008-09-09 | 1 | -1/+1 | |
| | | ||||||
| * | Remove f2py.lib from setupscons.py | David Cournapeau | 2008-07-06 | 1 | -2/+0 | |
| | | ||||||
| * | Remove uses of set_package_path, set_local_path, restore_path, and | Alan McIntyre | 2008-07-05 | 1 | -3/+0 | |
| | | | | | associated sys.path manipulations. | |||||
| * | Fix setup script. Exclude test that requires building from the main test suite. | Robert Kern | 2008-07-03 | 1 | -2/+0 | |
| | | ||||||
| * | Removing G3 f2py code. Development has moved to https://launchpad.net/f2py/ | Robert Kern | 2008-07-03 | 43 | -21659/+6 | |
| | | ||||||
| * | Clean up test output such that a completely-passing test suite has no ↵ | Robert Kern | 2008-07-03 | 8 | -18/+9 | |
| | | | | | extraneous output. | |||||
| * | Restore old test framework classes. | Alan McIntyre | 2008-06-21 | 8 | -8/+8 | |
| | | | | | | | | | | | | Added numpy.testing.run_module_suite to simplify "if __name__ == '__main__'" boilerplate code in test modules. Removed numpy/testing/pkgtester.py since it just consisted of an import statement after porting SciPy r4424. Allow numpy.*.test() to accept the old keyword arguments (but issue a deprecation warning when old arguments are seen). numpy.*.test() returns a test result object as before. Fixed typo in distutils doc. | |||||
| * | Switched to use nose to run tests. Added test and bench functions to all ↵ | Alan McIntyre | 2008-06-17 | 8 | -376/+380 | |
| | | | | | modules. | |||||
| * | f2py: Allow expressions that contain max/min calls, be used as dimension ↵ | Pearu Peterson | 2008-05-19 | 2 | -2/+14 | |
| | | | | | specifications. Defined macros min/max that are needed when --lower is used. Typical usage case: real a(min(1,n)). | |||||
| * | f2py: disallow matching module procedure-s as module-s. | Pearu Peterson | 2008-05-15 | 1 | -1/+1 | |
| | | ||||||
| * | Changed an idiom of appending strings to a buffer. Fixes numpy ticket 792. | Pearu Peterson | 2008-05-15 | 1 | -12/+39 | |
| | | ||||||
| * | Fix bug in parsing initexpr in 'INTEGER, PARAMETER :: ny = nx + 2' | Pearu Peterson | 2008-04-18 | 1 | -1/+1 | |
| | | ||||||
| * | Fix a long-standing typo preventing the build of scipy.stats.mvn. Sorry ↵ | Robert Kern | 2008-04-10 | 1 | -1/+1 | |
| | | | | | Stefan, no unittest; the original code is not amenable to unittests without a large refactoring. | |||||
| * | Fix issue 587 | Pearu Peterson | 2008-04-09 | 2 | -10/+35 | |
| | | ||||||
| * | Merge revisions 4721:4771 from the trunk | Jarrod Millman | 2008-02-08 | 2 | -10/+23 | |
| |\ | ||||||
| | * | Fix intent(callback) when used inside Fortran source. | Pearu Peterson | 2008-01-31 | 1 | -3/+7 | |
| | | | ||||||
| | * | Catch wrong array sizes when the length of an array is 1. | Pearu Peterson | 2008-01-25 | 1 | -7/+16 | |
| | | | ||||||
| * | | Add setupscons.py for pure python packages | David Cournapeau | 2008-01-07 | 1 | -0/+130 | |
| |/ | ||||||
| * | braino | Jarrod Millman | 2007-12-29 | 1 | -4/+6 | |
| | | ||||||
| * | janitorial work | Jarrod Millman | 2007-12-29 | 1 | -7/+5 | |
| | | ||||||
| * | Interfaces have attributes. | Robert Kern | 2007-12-16 | 1 | -1/+1 | |
| | | ||||||
| * | Fix typo. | Pearu Peterson | 2007-12-05 | 1 | -1/+1 | |
| | | ||||||
| * | Another string method conversion typo. | Robert Kern | 2007-12-04 | 1 | -1/+1 | |
| | | ||||||
| * | use 'in' keyword to test dictionary membership | Jarrod Millman | 2007-11-28 | 17 | -496/+808 | |
| | | ||||||
| * | another typo | Jarrod Millman | 2007-10-29 | 1 | -1/+1 | |
| | | ||||||
| * | typo | Jarrod Millman | 2007-10-29 | 1 | -1/+1 | |
| | | ||||||
