Sign in
chromium
/
external
/
github.com
/
numpy
/
numpy
/
refs/tags/v1.8.2
/
numpy
/
f2py
tag
616e90b891b991b49c5c18b9119e8876edfda9d6
tagger
Julian Taylor <jtaylor.debian@googlemail.com>
Sat Aug 09 10:39:23 2014
object
4563730a2d036307f1b67b2856d749aabdd8d546
1.8.2 Release
c720b00
DOC: remove mktemp mention from f2py manpage
by Julian Taylor
· 12 years ago
961c43d
ENH: remove insecure mktemp use
by Julian Taylor
· 12 years ago
29f65e6
BUG: changed string.lowercase to string.ascii_lowercase
by ochoadavid
· 12 years ago
84b69f8
BUG: f2py, fix decref on wrong object
by Julian Taylor
· 12 years ago
fbd6510
STY: Giant comma spacing fixup.
by Charles Harris
· 12 years ago
8ddb0ce
STY: Giant whitespace cleanup.
by Charles Harris
· 12 years ago
28eadc0
MAINT: Remove outdated version checks.
by Charles Harris
· 12 years ago
e6a1ab9
BUG: f2py script shebang may refer to wrong python
by Carwyn Pelley
· 12 years ago
dec4f4b
MAINT: Apply 2to3 idioms fixer.
by Charles Harris
· 12 years ago
c879ad8
2to3: Apply types fixer.
by Charles Harris
· 12 years ago
7f5af37
2to3: Apply the `numliterals` fixer and skip the `long` fixer.
by Charles Harris
· 12 years ago
f31f0fb
replace exec by eval to ensure the c variable is defined for all relevant python versions
by Jos de Kloe
· 12 years ago
a616479
2to3: Apply `map` fixer.
by Charles Harris
· 12 years ago
011f8a2
2to3: Apply `repr` fixer.
by Charles Harris
· 12 years ago
1340fa6
Merge pull request #3205 from charris/2to3-apply-dict-fixer
by Charles Harris
· 12 years ago
ef76d49
Merge pull request #3202 from charris/2to3-reduce-fixups
by njsmith
· 12 years ago
aab46a7
2to3: apply `dict` fixer.
by Charles Harris
· 12 years ago
bb726ca
2to3: Apply `print` fixer.
by Charles Harris
· 12 years ago
77e09f1
MAINT: Cleanup some imports involving reduce.
by Charles Harris
· 12 years ago
09a52ed
2to3: Apply `imports` fixer.
by Charles Harris
· 12 years ago
d4b88c1
2to3: Use absolute imports.
by Charles Harris
· 12 years ago
91aa03f
2to3: Replace xrange by range and use list(range(...)) where needed
by Charles Harris
· 12 years ago
d21281a
Merge pull request #3014 from bfroehle/f2py_unque_symbol
by Charles Harris
· 12 years ago
cabc07e
MAINT: Make numpy/f2py/crackfortran docstring read better.
by Charles Harris
· 12 years ago
6aa264c
2to3: Put `from __future__ import division in every python file.
by Charles Harris
· 12 years ago
3c13c0a
Merge pull request #3056 from charris/2to3-filter
by Charles Harris
· 12 years ago
3655b73
2to3: Apply `raise` fixes. Closes #3077.
by Charles Harris
· 12 years ago
d1b5ea9
Merge pull request #3097 from charris/2to3-sys_exc
by njsmith
· 12 years ago
9da706c
2to3: Apply `sys_exc` fixes. Closes #3086.
by Charles Harris
· 12 years ago
0e4e508
BUG: Fix `not a in ...` to `a not in ...`.
by Charles Harris
· 12 years ago
9a73697
REF: Replace filters with list comprehensions.
by Charles Harris
· 12 years ago
b990ed5
2to3: Apply `filter` fixes. Closes #3053.
by Charles Harris
· 12 years ago
2429298
2to3: apply exec fixer results.
by Charles Harris
· 12 years ago
705bf92
2to3: Use modern exception syntax.
by Charles Harris
· 13 years ago
a226daa
BUG: Choose a more unique PY_ARRAY_UNIQUE_SYMBOL in f2py.
by Bradley M. Froehle
· 13 years ago
df259db
DEP: Remove scons related files and code.
by Charles Harris
· 13 years ago
7b3e6fa
TST: f2py: rewrite strings to be easier to read
by Pauli Virtanen
· 13 years ago
4b500dd
ENH: f2py: add 'Wrapper for ...' text to the docstring
by Pauli Virtanen
· 13 years ago
ab13a65
ENH: f2py: generate docstrings in Numpy docstring format
by Pauli Virtanen
· 13 years ago
c8ed8ba
Merge pull request #365 from bfroehle/static_f2py_size
by njsmith
· 13 years ago
ead9e09
Use PyMODINIT_FUNC and update docs accordingly.
by cgohlke
· 13 years ago
e0457eb
BUG: Exported f2py_size symbol prevents linking multiple f2py modules.
by Bradley M. Froehle
· 13 years ago
dc4fd64
BUG: Fix f2py test_kind.py test.
by Charles Harris
· 13 years ago
acad872
UPD: Use prefixed macros in *.c files except numarray and linalg.
by Charles Harris
· 14 years ago
b63f91e
STY: f2py - replace macros in old_defines.h with new.
by Charles Harris
· 14 years ago
affea42
STY: Remove trailing whitespace
by Mark Wiebe
· 14 years ago
d82752c
BUG[f2py]: fix --include_paths bug. Deprecated --include_paths in favor of --include-paths. Updated docs.
by Pearu Peterson
· 14 years ago
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
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
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
f393b60
BUG: Fix assumed shape support for module routines.
by Pearu Peterson
· 14 years ago
5626f31
BUG: Fix memory leak in f2py_rout_wrap_call test.
by Michael Droettboom
· 14 years ago
e1a9692
STY: Update exception styles, trickier ones.
by Charles Harris
· 14 years ago
cfd7664
STY: Update exception style, easy ones.
by Charles Harris
· 14 years ago
06dc702
STY: Replace old style classes in tests with classes subclassing object.
by Charles Harris
· 14 years ago
7134a93
BUG: fix f2py bug in generating interfaces for assumed shape support as an addition to 4d43ec5.
by Pearu Peterson
· 14 years ago
4d43ec5
BUG: fix f2py bug in generating interfaces for assumed shape support.
by Pearu Peterson
· 14 years ago
96ac357
BUG: Fix f2py function wrapping (assumed_shape test) for gcc 4.5.x.
by Pearu Peterson
· 14 years ago
225f28c
BUG: f2py fix to scan literal strings with ! character, fixes ticket #1228
by Pearu Peterson
· 14 years ago
d4ee39f
BUG: fix f2py bug of converting an expression to variable, fixes ticket #1614.
by Pearu Peterson
· 14 years ago
2e96d91
BUG: fixing selected_real_kind for PowerPC
by Pearu Peterson
· 14 years ago
b598d9c
ENH: f2py: support Fortran size function with two arguments (ticket #1765).
by Pearu Peterson
· 14 years ago
f8c38cb
BUG: Fixed ticket #1767. Replaced assert with assert_ calls.
by Pearu Peterson
· 14 years ago
87e0f55
Merge remote branch 'upstream/master' into f2py-assumed-shape
by Pearu Peterson
· 14 years ago
81fbb51
Fix bug in constructing use statement with only.
by Pearu Peterson
· 15 years ago
3dfe0e1
Implemented selected_real_kind evaluation, added tests to catch processor dependencies..
by Pearu Peterson
· 15 years ago
aea92de
Implemented selected_real_kind evaluation, added tests to catch processor dependencies..
by Pearu Peterson
· 15 years ago
715b9c7
Fix assumed shape support for routines that use modules. Improved .f2py_f2cmap messages.
by Pearu Peterson
· 15 years ago
d7ea62c
WIP: implemented assumed shape support for Fortran subroutines.
by Pearu Peterson
· 15 years ago
cafd2df
WIP: added assumed shape array support to Fortran functions.
by Pearu Peterson
· 15 years ago
e2e2652
BUG: Fixes ticket 1693.
by Pearu Peterson
· 15 years ago
67ed62e
BUG: Fix ticket 1679.
by Pearu Peterson
· 15 years ago
1ef8aac
BUG: f2py: fix creating string object from callback function using string size.
by Pearu Peterson
· 15 years ago
9950e72
BUG: f2py: fix building modules via 'f2py -c' (broken in e6eafde)
by Pauli Virtanen
· 15 years ago
3466789
BUGLET: Need "\\n" in string template.
by Charles Harris
· 15 years ago
50479e9
FIX: And add missing \n for error message.
by Charles Harris
· 15 years ago
8f6114b
BUG: Fix previous fix to numpy/g2py/setup.py.
by Charles Harris
· 15 years ago
29cccb6
BUG: Fix generated f2py bootstrap script to work with python 3k.
by Charles Harris
· 15 years ago
e6eafde
FEAT: add C module and f2py fortran wrapper output customization from command line.
by David Cournapeau
· 15 years ago
fa0842f
f2py: fixed issue 1533 (scanning pyf files will report lines that do not match known patterns).
by Pearu Peterson
· 15 years ago
8a4fb93
3K: f2py: catch a misc import error
by Pauli Virtanen
· 15 years ago
6f20d1e
BUG: core: use PyCapsule objects only on Python >= 3.0, stay with PyCObjects on Python 2.x
by Pauli Virtanen
· 15 years ago
3918041
f2py: fixed typos in TRYCOMPLEXPYARRAYTEMPLATE.
by Pearu Peterson
· 15 years ago
6d438e6
BUG: f2py: replace a string exception with a real one (fixes #1515)
by Pauli Virtanen
· 15 years ago
bc656ee
ENH, BUG: PyCObject will be deprecated in python 2.7. So use the NpyCapsule
by Charles Harris
· 15 years ago
af2b057
TST: mark slow f2py tests + add f2py test function.
by David Cournapeau
· 15 years ago
dc9621d
3K: f2py: make create_cb_arglist work with Py3 functions
by Pauli Virtanen
· 15 years ago
11ff835
3K: f2py: port the array_from_pyobj test module to Py3
by Pauli Virtanen
· 15 years ago
80f6b2a
BUG: f2py: fix infinite loops in *_from_pyobj with unicode input
by Pauli Virtanen
· 15 years ago
4c1ae33
3K: f2py: port much of f2py C code to Py3
by Pauli Virtanen
· 15 years ago
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
b65938a
3K: f2py: map PyString -> PyBytes and PyInt -> PyLong on Py3
by Pauli Virtanen
· 15 years ago
4a26b70
3K: f2py: address a semantic difference between Py2 and Py3
by Pauli Virtanen
· 15 years ago
733ebda
BUG: f2py: fix F90 detection in the tests
by Pauli Virtanen
· 15 years ago
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
c51146b
ENH: f2py: skip also test_array_from_pyobj if no C compiler is available
by Pauli Virtanen
· 15 years ago
16179a0
BUG: f2py: ensure that ARRAY_ISCOMPATIBLE macro handles also booleans
by Pauli Virtanen
· 15 years ago
399018f
ENH: f2py: convert test suite to Nose form
by Pauli Virtanen
· 15 years ago
f358068
ENH: Add support for PyCapsule.
by Charles Harris
· 16 years ago
9596a89
BUG: Fix imports in diagnose and excise old crap.
by Charles Harris
· 16 years ago
Next »