Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | REF: Replace filters with list comprehensions. | Charles Harris | 2013-02-28 | 1 | -12/+17 | |
| | | | | | | | | | | | | | | | | | | 2to3 does a lot of list(filter(...)) sort of thing which can be avoided by using list comprehensions instead of filters. This also seems to clarify the code to a considerable degree. | |||||
| * | | 2to3: Apply `filter` fixes. Closes #3053. | Charles Harris | 2013-02-28 | 1 | -11/+11 | |
| | | | | | | | | | | | | | | | Generally, this involves using list comprehension, or explicit list construction as `filter` is an iterator in Python 3. | |||||
* | | | 2to3: Apply `raise` fixes. Closes #3077. | Charles Harris | 2013-03-01 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replaces the raise Exception, msg: form with raise Exception(msg): | |||||
* | | | Merge pull request #3097 from charris/2to3-sys_exc | njsmith | 2013-03-01 | 1 | -3/+3 | |
|\ \ \ | | | | | | | | | 2to3: Apply `sys_exc` fixes. Closes #3086. | |||||
| * | | | 2to3: Apply `sys_exc` fixes. Closes #3086. | Charles Harris | 2013-02-28 | 1 | -3/+3 | |
| |/ / | | | | | | | | | | | | | This uses sys.exc_info in place of sys.exc_value. The new function goes back to at least 2002, so should be safe. | |||||
* | | | 2to3: apply exec fixer results. | Charles Harris | 2013-02-28 | 1 | -2/+2 | |
|/ / | | | | | | | This changes the `exec` command to the `exec` function. | |||||
* | | 2to3: Use modern exception syntax. | Charles Harris | 2013-02-26 | 6 | -22/+22 | |
|/ | | | | Example: except ValueError,msg: -> except ValueError as msg: | |||||
* | DEP: Remove scons related files and code. | Charles Harris | 2013-01-13 | 1 | -124/+0 | |
| | | | | | | | | | This removes files and code supporting scons builds. After this change numpy will only support builds using distutils or bento. The removal of scons has been discussed on the list several times and a decision has been made that scons support is no longer needed. This was originally discussed for numpy 1.7 and because the distutils and bento methods are still available we are skipping the usual deprecation period. | |||||
* | TST: f2py: rewrite strings to be easier to read | Pauli Virtanen | 2012-11-17 | 2 | -26/+39 | |
| | ||||||
* | ENH: f2py: add 'Wrapper for ...' text to the docstring | Pauli Virtanen | 2012-11-17 | 3 | -2/+4 | |
| | ||||||
* | ENH: f2py: generate docstrings in Numpy docstring format | Pauli Virtanen | 2012-11-17 | 5 | -22/+53 | |
| | ||||||
* | Merge pull request #365 from bfroehle/static_f2py_size | njsmith | 2012-09-21 | 1 | -1/+1 | |
|\ | | | | | BUG: Exported f2py_size symbol prevents linking multiple f2py modules. | |||||
| * | BUG: Exported f2py_size symbol prevents linking multiple f2py modules. | Bradley M. Froehle | 2012-07-30 | 1 | -1/+1 | |
| | | ||||||
* | | Use PyMODINIT_FUNC and update docs accordingly. | cgohlke | 2012-09-02 | 2 | -2/+2 | |
|/ | | | | See https://github.com/scipy/scipy/pull/279 | |||||
* | BUG: Fix f2py test_kind.py test. | Charles Harris | 2012-03-17 | 1 | -5/+8 | |
| | | | | | Newer Fortran compilers for Intel may support quad precision, so _selected_real_kind_func needs to report that for precisions >= 19. | |||||
* | UPD: Use prefixed macros in *.c files except numarray and linalg. | Charles Harris | 2012-02-04 | 1 | -6/+6 | |
| | ||||||
* | STY: f2py - replace macros in old_defines.h with new. | Charles Harris | 2012-02-04 | 8 | -123/+123 | |
| | ||||||
* | STY: Remove trailing whitespace | Mark Wiebe | 2011-07-26 | 1 | -13/+13 | |
| | ||||||
* | BUG[f2py]: fix --include_paths bug. Deprecated --include_paths in favor of ↵ | Pearu Peterson | 2011-06-21 | 2 | -10/+26 | |
| | | | | --include-paths. Updated docs. | |||||
* | BUG: fix f2py size variadic macro for Visual C++ 2008 compiler. Also be ↵ | Pearu Peterson | 2011-05-18 | 2 | -2/+3 | |
| | | | | verbose on unspecified use modules. | |||||
* | BUG: Fix the order of declaring variables in f2py generated code. The bug ↵ | Pearu Peterson | 2011-05-07 | 1 | -2/+6 | |
| | | | | was noticable with ifort but not with gfortran. | |||||
* | BUG: Fix two argument size support for Fortran module routines. Reverted ↵ | Pearu Peterson | 2011-05-06 | 4 | -10/+76 | |
| | | | | size-to-shape mapping patch and implemented two argument size function in C. | |||||
* | BUG: Fix assumed shape support for module routines. | Pearu Peterson | 2011-05-06 | 4 | -12/+70 | |
| | ||||||
* | BUG: Fix memory leak in f2py_rout_wrap_call test. | Michael Droettboom | 2011-05-02 | 1 | -1/+3 | |
| | ||||||
* | STY: Update exception styles, trickier ones. | Charles Harris | 2011-04-05 | 2 | -2/+2 | |
| | ||||||
* | STY: Update exception style, easy ones. | Charles Harris | 2011-04-05 | 1 | -6/+6 | |
| | ||||||
* | STY: Replace old style classes in tests with classes subclassing object. | Charles Harris | 2011-04-05 | 2 | -3/+3 | |
| | ||||||
* | BUG: fix f2py bug in generating interfaces for assumed shape support as an ↵ | Pearu Peterson | 2011-03-31 | 1 | -1/+2 | |
| | | | | addition to 4d43ec5. | |||||
* | BUG: fix f2py bug in generating interfaces for assumed shape support. | Pearu Peterson | 2011-03-29 | 1 | -1/+1 | |
| | ||||||
* | BUG: Fix f2py function wrapping (assumed_shape test) for gcc 4.5.x. | Pearu Peterson | 2011-03-28 | 1 | -3/+1 | |
| | ||||||
* | BUG: f2py fix to scan literal strings with ! character, fixes ticket #1228 | Pearu Peterson | 2011-03-27 | 1 | -1/+1 | |
| | ||||||
* | BUG: fix f2py bug of converting an expression to variable, fixes ticket #1614. | Pearu Peterson | 2011-03-25 | 1 | -25/+44 | |
| | ||||||
* | BUG: fixing selected_real_kind for PowerPC | Pearu Peterson | 2011-03-24 | 1 | -2/+7 | |
| | ||||||
* | ENH: f2py: support Fortran size function with two arguments (ticket #1765). | Pearu Peterson | 2011-03-13 | 3 | -1/+53 | |
| | ||||||
* | BUG: Fixed ticket #1767. Replaced assert with assert_ calls. | Pearu Peterson | 2011-03-11 | 10 | -227/+229 | |
| | ||||||
* | 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. |