- 3d36bf2 Disable 7712 patch. by Pearu Peterson · 16 years ago
- d1e0c40 f2py: fix a code generation bug when callback function is taking arguments with the same symbol name. by Pearu Peterson · 16 years ago
- a5ebfbb BUG Fix ticket #1285. Problem located by cgranade. by Charles Harris · 16 years ago
- 11de890 Introduced intent(align4|align8|align16) attributes. Fixes scipy ticket 794 after using intent(align8) in the corresponding scipy pyf files. by Pearu Peterson · 16 years ago
- cdd23ab Replace \r by \n. by Charles Harris · 16 years ago
- 5765828 BUG: fix f2py generated code for MSVC 9. by David Cournapeau · 16 years ago
- 28f1a24 Remove useless f2py debug print. by David Cournapeau · 16 years ago
- a0945f6 f2py: fix a bug evaluating parameters with kind function: kind(1.0), kind(1.0d) must be 4, 8, respectively. by Pearu Peterson · 16 years ago
- 653d2b2 f2py: ignore concatenation of strings in initexpressions. by Pearu Peterson · 16 years ago
- 7170d0a Python 3000 fixes for 2to3 [patch by James Watson]. by Stefan van der Walt · 16 years ago
- 932368e Fix hyphen (patch from debian package). by David Cournapeau · 17 years ago
- aa423d9 Avoid putting things into stderr when errors occurs in f2py wrappers; put all the info in the python error string instead. by David Cournapeau · 17 years ago
- 8c448a3 ran reindent by Jarrod Millman · 17 years ago
- ed916ff Fix issue 964: f2py python 2.6, 2.6.1 support. by Pearu Peterson · 17 years ago
- fbe2af2 Fix a bug. by Pearu Peterson · 17 years ago
- 95104b8 Removed unused/redundant imports. PEP8 conformance (only one import per line). by Alan McIntyre · 17 years ago
- b01bf6f Fix typo. by Pearu Peterson · 17 years ago
- 297a4b8 Remove f2py.lib from setupscons.py by David Cournapeau · 17 years ago
- 73cc84b Remove uses of set_package_path, set_local_path, restore_path, and by Alan McIntyre · 17 years ago
- 5873cfd Fix setup script. Exclude test that requires building from the main test suite. by Robert Kern · 17 years ago
- 484c100 Removing G3 f2py code. Development has moved to https://launchpad.net/f2py/ by Robert Kern · 17 years ago
- c8f88c0 Clean up test output such that a completely-passing test suite has no extraneous output. by Robert Kern · 17 years ago
- af7f89e Restore old test framework classes. by Alan McIntyre · 17 years ago
- c331857 Switched to use nose to run tests. Added test and bench functions to all modules. by Alan McIntyre · 17 years ago
- ebecbb1 f2py: Allow expressions that contain max/min calls, be used as dimension specifications. Defined macros min/max that are needed when --lower is used. Typical usage case: real a(min(1,n)). by Pearu Peterson · 17 years ago
- a6f2148 f2py: disallow matching module procedure-s as module-s. by Pearu Peterson · 17 years ago
- f968b18 Changed an idiom of appending strings to a buffer. Fixes numpy ticket 792. by Pearu Peterson · 17 years ago
- db8970d Fix bug in parsing initexpr in 'INTEGER, PARAMETER :: ny = nx + 2' by Pearu Peterson · 17 years ago
- 0323900 Fix a long-standing typo preventing the build of scipy.stats.mvn. Sorry Stefan, no unittest; the original code is not amenable to unittests without a large refactoring. by Robert Kern · 17 years ago
- e50fa8e Fix issue 587 by Pearu Peterson · 17 years ago
- fb3f711 Merge revisions 4721:4771 from the trunk by Jarrod Millman · 18 years ago
- 25b3334 Fix intent(callback) when used inside Fortran source. by Pearu Peterson · 18 years ago
- 7e33f2e Catch wrong array sizes when the length of an array is 1. by Pearu Peterson · 18 years ago
- 2bcb222 Add setupscons.py for pure python packages by David Cournapeau · 18 years ago
- 423b195 braino by Jarrod Millman · 18 years ago
- e7191fc janitorial work by Jarrod Millman · 18 years ago
- bd16a4f Interfaces have attributes. by Robert Kern · 18 years ago
- 89fa0fd Fix typo. by Pearu Peterson · 18 years ago
- 8610fb8 Another string method conversion typo. by Robert Kern · 18 years ago
- 6c00b11 use 'in' keyword to test dictionary membership by Jarrod Millman · 18 years ago
- 4cd7a18 another typo by Jarrod Millman · 18 years ago
- 8d91e0a typo by Jarrod Millman · 18 years ago
- 0b77f0e ran reindent.py to clean up whitespace by Jarrod Millman · 18 years ago
- 06b3165 using faster string methods rather than deprecated string module by Jarrod Millman · 18 years ago
- 3cb37bb Using the in operator to find substrings. It is shorter and easier to understand. by Jarrod Millman · 18 years ago
- e41b3a4 removing decorators (see #580) by Jarrod Millman · 18 years ago
- 610438f Rename test classes to CapWords. by Stefan van der Walt · 18 years ago
- f362b39 Fix whitespace to conform to Python 3000 convention. by Stefan van der Walt · 18 years ago
- 9fc1daf extgen: removing old files by Pearu Peterson · 18 years ago
- a6148b2 extgen: restored numpy support, fixed bugs. by Pearu Peterson · 18 years ago
- d4375f2 extgen: rewrite, clean up, update docs, simple example from Python reference manual. by Pearu Peterson · 18 years ago
- ad48c03 extgen: added initial values to C declarations. by Pearu Peterson · 18 years ago
- 7edfd74 extgen: impl support to all scalar C types and strings that Python supports. by Pearu Peterson · 18 years ago
- 45176ed extgen: added argument dependecies support, reviewed reference counting of input and output arguments. by Pearu Peterson · 18 years ago
- 9bee053 Added numpy array and scalar support to PyCTypePython. by Pearu Peterson · 18 years ago
- 7a605b4 extgen: Impl argument support to all Python types. by Pearu Peterson · 18 years ago
- c7f8d0d ExtGen: impl PObject* and C int support, minor improvements. by Pearu Peterson · 18 years ago
- 4196b72 Impl CType classes and rewrote docs. by Pearu Peterson · 18 years ago
- 2ff91f9 Add extgen subpackage. by Stefan van der Walt · 18 years ago
- 0cd859e ExtGen: doc update. by Pearu Peterson · 18 years ago
- 0a24806 Impl basic argument support and documentation generation. by Pearu Peterson · 18 years ago
- 66650bd Initial commit of extgen - Python Extension module Generator package. by Pearu Peterson · 18 years ago
- 73001f4 Ignore blank lines when determining Fortran free format. by Robert Kern · 18 years ago
- e4cf341 Doc update 2. by Pearu Peterson · 18 years ago
- e4ccde2 Doc update. by Pearu Peterson · 18 years ago
- 0b60733 Added doc file for the g3 f2py library package. by Pearu Peterson · 18 years ago
- c41545e update fortran parser docs, 2 by Pearu Peterson · 18 years ago
- 830b621 update fortran parser docs. by Pearu Peterson · 18 years ago
- 02212b6 updated fortran parser docs to rest by Pearu Peterson · 18 years ago
- 2dd0839 Fix f2py --fcompiler=.. option. by Pearu Peterson · 18 years ago
- 5ed8acc f2py_testing: remove jiffies, memusage definitions. Use numpy.testing.util versions instead by cookedm · 18 years ago
- bfb1633 Use log.debug instead of print in setup.py's by cookedm · 18 years ago
- a95189e Minor for Python 2.3 support. by Pearu Peterson · 18 years ago
- 0683bce g3 f2py: impl. compiling Fortran codes online (function numpy.f2py.lib.compile), clean up testing. by Pearu Peterson · 18 years ago
- 6a0074d Fix f2py command line doc. by Pearu Peterson · 18 years ago
- 72f78a7 Fix doc rest formatting - 2. by Pearu Peterson · 18 years ago
- 0176d33 Fix doc rest formatting. by Pearu Peterson · 18 years ago
- cc7d893 Clean up setup() calls. by Pearu Peterson · 18 years ago
- e52ea92 Fix pointer size for F90 allocatable arrays on 64-bit platform. Closes ticket #147. by Stefan van der Walt · 18 years ago
- d8f883a f2py: support for assumed shape arrays of fortran callback functions (will not work with python callback functions, for instance). by Pearu Peterson · 18 years ago
- ad22a17 Fix #491 by Robert Kern · 18 years ago
- 5c8f992 Applying patch from ticket 437. by Pearu Peterson · 18 years ago
- 1214839 G3 F2PY: Fixed parsing a*b**c expression. by Pearu Peterson · 19 years ago
- e56a09a clean up unused imports and bad whitespace by Tim Leslie · 19 years ago
- 1bd2d49 Whitespace cleanup. by Stefan van der Walt · 19 years ago
- 3fa7474 Cont. implementing F2000 parser. by Pearu Peterson · 19 years ago
- 8b48eb0 Moving the research/ directory out of the trunk as it takes up space in the source distribution without being useful for users. by Robert Kern · 19 years ago
- ed184cd F2PY G3: continued F2003 parser implementation and unittesting. by Pearu Peterson · 19 years ago
- 8cc0bab Apply #368 by Travis Oliphant · 19 years ago
- a39c1cd F2PY G3: Cont impl F2003 parser; defined all syntax rules. by Pearu Peterson · 19 years ago
- d02c44d F2PY: Cont implementing Fortran 2003 parser. Clean up. by Pearu Peterson · 19 years ago
- 2f43a2f Fix some reference-count problems in f2py with data-type objects. by Travis Oliphant · 19 years ago
- 4d11fdf F2PY: Cont. unifying Fortran stmt and expr parsers. by Pearu Peterson · 19 years ago
- 9bc2e05 F2PY: start unifying Fortran statement and expression parsers. by Pearu Peterson · 19 years ago
- 1dd7c93 F2PY G3: more tests for Fortran expr parser. by Pearu Peterson · 19 years ago
- 2d3a2f6 F2PY: Optimised Fortran expr parser. Fixed bugs. by Pearu Peterson · 19 years ago
- 1e25ae2 F2PY G3: finished Fortran expression parser implementation, comes with complete unittests. by Pearu Peterson · 19 years ago
- 4ea6483 F2PY G3: Cont implementing Fortran expression parser, almost finished. by Pearu Peterson · 19 years ago
- 400ba83 F2PY G3: Cont. implementing Fortran expression parser and unittests. by Pearu Peterson · 19 years ago
- 0de69a4 F2PY G3: implementingg Fortran expression parser cont. by Pearu Peterson · 19 years ago