1. 8415e89 BUG: Exported f2py_size symbol prevents linking multiple f2py modules. by Bradley M. Froehle · 12 years ago
  2. dc4fd64 BUG: Fix f2py test_kind.py test. by Charles Harris · 13 years ago
  3. acad872 UPD: Use prefixed macros in *.c files except numarray and linalg. by Charles Harris · 14 years ago
  4. b63f91e STY: f2py - replace macros in old_defines.h with new. by Charles Harris · 14 years ago
  5. affea42 STY: Remove trailing whitespace by Mark Wiebe · 14 years ago
  6. d82752c BUG[f2py]: fix --include_paths bug. Deprecated --include_paths in favor of --include-paths. Updated docs. by Pearu Peterson · 14 years ago
  7. 026bc92 BUG: fix f2py size variadic macro for Visual C++ 2008 compiler. Also be verbose on unspecified use modules. by Pearu Peterson · 14 years ago
  8. 6df2ac2 BUG: Fix the order of declaring variables in f2py generated code. The bug was noticable with ifort but not with gfortran. by Pearu Peterson · 14 years ago
  9. a859492 BUG: Fix two argument size support for Fortran module routines. Reverted size-to-shape mapping patch and implemented two argument size function in C. by Pearu Peterson · 14 years ago
  10. f393b60 BUG: Fix assumed shape support for module routines. by Pearu Peterson · 14 years ago
  11. 5626f31 BUG: Fix memory leak in f2py_rout_wrap_call test. by Michael Droettboom · 14 years ago
  12. e1a9692 STY: Update exception styles, trickier ones. by Charles Harris · 14 years ago
  13. cfd7664 STY: Update exception style, easy ones. by Charles Harris · 14 years ago
  14. 06dc702 STY: Replace old style classes in tests with classes subclassing object. by Charles Harris · 14 years ago
  15. 7134a93 BUG: fix f2py bug in generating interfaces for assumed shape support as an addition to 4d43ec5. by Pearu Peterson · 14 years ago
  16. 4d43ec5 BUG: fix f2py bug in generating interfaces for assumed shape support. by Pearu Peterson · 14 years ago
  17. 96ac357 BUG: Fix f2py function wrapping (assumed_shape test) for gcc 4.5.x. by Pearu Peterson · 14 years ago
  18. 225f28c BUG: f2py fix to scan literal strings with ! character, fixes ticket #1228 by Pearu Peterson · 14 years ago
  19. d4ee39f BUG: fix f2py bug of converting an expression to variable, fixes ticket #1614. by Pearu Peterson · 14 years ago
  20. 2e96d91 BUG: fixing selected_real_kind for PowerPC by Pearu Peterson · 14 years ago
  21. b598d9c ENH: f2py: support Fortran size function with two arguments (ticket #1765). by Pearu Peterson · 14 years ago
  22. f8c38cb BUG: Fixed ticket #1767. Replaced assert with assert_ calls. by Pearu Peterson · 14 years ago
  23. 87e0f55 Merge remote branch 'upstream/master' into f2py-assumed-shape by Pearu Peterson · 14 years ago
  24. 81fbb51 Fix bug in constructing use statement with only. by Pearu Peterson · 14 years ago
  25. 3dfe0e1 Implemented selected_real_kind evaluation, added tests to catch processor dependencies.. by Pearu Peterson · 14 years ago
  26. aea92de Implemented selected_real_kind evaluation, added tests to catch processor dependencies.. by Pearu Peterson · 14 years ago
  27. 715b9c7 Fix assumed shape support for routines that use modules. Improved .f2py_f2cmap messages. by Pearu Peterson · 15 years ago
  28. d7ea62c WIP: implemented assumed shape support for Fortran subroutines. by Pearu Peterson · 15 years ago
  29. cafd2df WIP: added assumed shape array support to Fortran functions. by Pearu Peterson · 15 years ago
  30. e2e2652 BUG: Fixes ticket 1693. by Pearu Peterson · 15 years ago
  31. 67ed62e BUG: Fix ticket 1679. by Pearu Peterson · 15 years ago
  32. 1ef8aac BUG: f2py: fix creating string object from callback function using string size. by Pearu Peterson · 15 years ago
  33. 9950e72 BUG: f2py: fix building modules via 'f2py -c' (broken in e6eafde) by Pauli Virtanen · 15 years ago
  34. 3466789 BUGLET: Need "\\n" in string template. by Charles Harris · 15 years ago
  35. 50479e9 FIX: And add missing \n for error message. by Charles Harris · 15 years ago
  36. 8f6114b BUG: Fix previous fix to numpy/g2py/setup.py. by Charles Harris · 15 years ago
  37. 29cccb6 BUG: Fix generated f2py bootstrap script to work with python 3k. by Charles Harris · 15 years ago
  38. e6eafde FEAT: add C module and f2py fortran wrapper output customization from command line. by David Cournapeau · 15 years ago
  39. fa0842f f2py: fixed issue 1533 (scanning pyf files will report lines that do not match known patterns). by Pearu Peterson · 15 years ago
  40. 8a4fb93 3K: f2py: catch a misc import error by Pauli Virtanen · 15 years ago
  41. 6f20d1e BUG: core: use PyCapsule objects only on Python >= 3.0, stay with PyCObjects on Python 2.x by Pauli Virtanen · 15 years ago
  42. 3918041 f2py: fixed typos in TRYCOMPLEXPYARRAYTEMPLATE. by Pearu Peterson · 15 years ago
  43. 6d438e6 BUG: f2py: replace a string exception with a real one (fixes #1515) by Pauli Virtanen · 15 years ago
  44. bc656ee ENH, BUG: PyCObject will be deprecated in python 2.7. So use the NpyCapsule by Charles Harris · 15 years ago
  45. af2b057 TST: mark slow f2py tests + add f2py test function. by David Cournapeau · 15 years ago
  46. dc9621d 3K: f2py: make create_cb_arglist work with Py3 functions by Pauli Virtanen · 15 years ago
  47. 11ff835 3K: f2py: port the array_from_pyobj test module to Py3 by Pauli Virtanen · 15 years ago
  48. 80f6b2a BUG: f2py: fix infinite loops in *_from_pyobj with unicode input by Pauli Virtanen · 15 years ago
  49. 4c1ae33 3K: f2py: port much of f2py C code to Py3 by Pauli Virtanen · 15 years ago
  50. 2fb79c1 3K: f2py: don't use test generators in the tests -- they don't really work on Nose on Py3 by Pauli Virtanen · 15 years ago
  51. b65938a 3K: f2py: map PyString -> PyBytes and PyInt -> PyLong on Py3 by Pauli Virtanen · 15 years ago
  52. 4a26b70 3K: f2py: address a semantic difference between Py2 and Py3 by Pauli Virtanen · 15 years ago
  53. 733ebda BUG: f2py: fix F90 detection in the tests by Pauli Virtanen · 15 years ago
  54. 8ed3440 3K: f2py: make f2py run far enough to produce output files (they don't compile yet, though, as the C code is not Py3 compatible) by Pauli Virtanen · 15 years ago
  55. c51146b ENH: f2py: skip also test_array_from_pyobj if no C compiler is available by Pauli Virtanen · 15 years ago
  56. 16179a0 BUG: f2py: ensure that ARRAY_ISCOMPATIBLE macro handles also booleans by Pauli Virtanen · 15 years ago
  57. 399018f ENH: f2py: convert test suite to Nose form by Pauli Virtanen · 15 years ago
  58. f358068 ENH: Add support for PyCapsule. by Charles Harris · 16 years ago
  59. 9596a89 BUG: Fix imports in diagnose and excise old crap. by Charles Harris · 16 years ago
  60. d3c7ae5 ENH: Add diagnose to f2py package. This makes the tests a bit easier to fix. by Charles Harris · 16 years ago
  61. 2f33218 BUG: Shoddy quick fix of some f2py tests so they run. The tests expose errors, by Charles Harris · 16 years ago
  62. 11b80e7 3K: BUG: work around bugs in Python 3.1.1 2to3 by not using fixes_reduce by Pauli Virtanen · 16 years ago
  63. c3c6b10 3K: f2py: use integer division to avoid problems with string multiplication by Pauli Virtanen · 16 years ago
  64. 10985dc 3K: f2py: break cyclic imports (which are not allowed on Py3) by moving them to functions by Pauli Virtanen · 16 years ago
  65. 08ec797 Make f2py setup.py runnable under python3. by David Cournapeau · 16 years ago
  66. 3d36bf2 Disable 7712 patch. by Pearu Peterson · 16 years ago
  67. d1e0c40 f2py: fix a code generation bug when callback function is taking arguments with the same symbol name. by Pearu Peterson · 16 years ago
  68. a5ebfbb BUG Fix ticket #1285. Problem located by cgranade. by Charles Harris · 16 years ago
  69. 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
  70. cdd23ab Replace \r by \n. by Charles Harris · 16 years ago
  71. 5765828 BUG: fix f2py generated code for MSVC 9. by David Cournapeau · 16 years ago
  72. 28f1a24 Remove useless f2py debug print. by David Cournapeau · 16 years ago
  73. 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
  74. 653d2b2 f2py: ignore concatenation of strings in initexpressions. by Pearu Peterson · 16 years ago
  75. 7170d0a Python 3000 fixes for 2to3 [patch by James Watson]. by Stefan van der Walt · 16 years ago
  76. 932368e Fix hyphen (patch from debian package). by David Cournapeau · 17 years ago
  77. 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
  78. 8c448a3 ran reindent by Jarrod Millman · 17 years ago
  79. ed916ff Fix issue 964: f2py python 2.6, 2.6.1 support. by Pearu Peterson · 17 years ago
  80. fbe2af2 Fix a bug. by Pearu Peterson · 17 years ago
  81. 95104b8 Removed unused/redundant imports. PEP8 conformance (only one import per line). by Alan McIntyre · 17 years ago
  82. b01bf6f Fix typo. by Pearu Peterson · 17 years ago
  83. 297a4b8 Remove f2py.lib from setupscons.py by David Cournapeau · 17 years ago
  84. 73cc84b Remove uses of set_package_path, set_local_path, restore_path, and by Alan McIntyre · 17 years ago
  85. 5873cfd Fix setup script. Exclude test that requires building from the main test suite. by Robert Kern · 17 years ago
  86. 484c100 Removing G3 f2py code. Development has moved to https://launchpad.net/f2py/ by Robert Kern · 17 years ago
  87. c8f88c0 Clean up test output such that a completely-passing test suite has no extraneous output. by Robert Kern · 17 years ago
  88. af7f89e Restore old test framework classes. by Alan McIntyre · 17 years ago
  89. c331857 Switched to use nose to run tests. Added test and bench functions to all modules. by Alan McIntyre · 17 years ago
  90. 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
  91. a6f2148 f2py: disallow matching module procedure-s as module-s. by Pearu Peterson · 17 years ago
  92. f968b18 Changed an idiom of appending strings to a buffer. Fixes numpy ticket 792. by Pearu Peterson · 17 years ago
  93. db8970d Fix bug in parsing initexpr in 'INTEGER, PARAMETER :: ny = nx + 2' by Pearu Peterson · 17 years ago
  94. 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
  95. e50fa8e Fix issue 587 by Pearu Peterson · 17 years ago
  96. fb3f711 Merge revisions 4721:4771 from the trunk by Jarrod Millman · 18 years ago
  97. 25b3334 Fix intent(callback) when used inside Fortran source. by Pearu Peterson · 18 years ago
  98. 7e33f2e Catch wrong array sizes when the length of an array is 1. by Pearu Peterson · 18 years ago
  99. 2bcb222 Add setupscons.py for pure python packages by David Cournapeau · 18 years ago
  100. 423b195 braino by Jarrod Millman · 18 years ago