summaryrefslogtreecommitdiff
path: root/numpy/f2py/crackfortran.py
Commit message (Collapse)AuthorAgeFilesLines
...
* STY: Make PEP8 fixes in numpy/f2pyCharles Harris2015-07-251-1157/+1597
| | | | | Decided to bite the bullet on this one. The code is certainly more readable, so should be easier to fix if we need to.
* STY: Make pyflakes fixes in numpy/f2pyCharles Harris2015-07-251-70/+101
|
* BUG: Make f2py work with intent(in out).Charles Harris2014-10-091-4/+6
| | | | | | | Note that Fortran ignores spaces in this case, so that 'in out' is treated as 'inout'. Closes #479.
* MAINT: remove use of ``reload`` from f2py. See gh-4139.Ralf Gommers2013-12-301-5/+40
|
* crackfortran: changed string.lowercase to string.ascii_lowercaseochoadavid2013-10-241-1/+1
| | | Compatibility with Python3, which dosn't have string.lowercase.
* STY: Giant comma spacing fixup.Charles Harris2013-08-181-400/+400
| | | | | | | Run the 2to3 ws_comma fixer on *.py files. Some lines are now too long and will need to be broken at some point. OTOH, some lines were already too long and need to be broken at some point. Now seems as good a time as any to do this with open PRs at a minimum.
* STY: Giant whitespace cleanup.Charles Harris2013-08-181-1/+1
| | | | Now is as good a time as any with open PR's at a low.
* MAINT: Apply 2to3 idioms fixer.Charles Harris2013-05-021-14/+15
| | | | | | | | | | | | | | | | | | | The idioms fixer makes the following replacements. 1) int <- bool 2) comparison or identity of types <- isinstance 3) a.sort() <- sorted(a) There were two problems that needed to be dealt with after the application of the fixer. First, the replacement of comparison or identity of types by isinstance was not always correct. The isinstance function returns true for subtypes whereas many of the places where the fixer made a substitution needed to check for exact type equality. Second, the sorted function was applied to arrays, but because it treats them as iterators and constructs a sorted list from the result, that is the wrong thing to do. Closes #3062.
* 2to3: Apply types fixer.Charles Harris2013-04-141-9/+8
| | | | | | | | | | | | | | | | | | | | Python 3 removes the builtin types from the types module. The types fixer replaces such references with the builtin types where possible and also takes care of some special cases: types.TypeNone <- type(None) types.NotImplementedType <- type(NotImplemented) types.EllipsisType <- type(Ellipsis) The only two tricky substitutions are types.StringType <- bytes types.LongType <- int These are fixed up to support both Python 3 and Python 2 code by importing the long and bytes types from numpy.compat. Closes #3240.
* replace exec by eval to ensure the c variable is defined for all relevant ↵Jos de Kloe2013-04-121-1/+1
| | | | python versions
* 2to3: Apply `map` fixer.Charles Harris2013-04-101-3/+6
| | | | | | | | | | | | | | | | | | | In Python 3 `map` is an iterator while in Python 2 it returns a list. The simple fix applied by the fixer is to inclose all instances of map with `list(...)`. This is not needed in all cases, and even where appropriate list comprehensions may be preferred for their clarity. Consequently, this patch attempts to use list comprehensions where it makes sense. When the mapped function has two arguments there is another problem that can arise. In Python 3 map stops execution when the shortest argument list is exhausted, while in Python 2 it stops when the longest argument list is exhausted. Consequently the two argument case might need special care. However, we have been running Python3 converted versions of numpy since 1.5 without problems, so it is probably not something that affects us. Closes #3068
* 2to3: Apply `repr` fixer.Charles Harris2013-04-081-35/+35
| | | | | | | | | | | | This replaces python backtics with repr(...). The backtics were mostly used to generate strings for printing with a string format and it is tempting to replace `'%s' % repr(x)` with `'%r' % x`. That would work except where `x` happened to be a tuple or a dictionary but, because it would be significant work to guarantee that and because there are not many places where backtics are used, the safe path is to let the repr replacements stand. Closes #3083.
* 2to3: apply `dict` fixer.Charles Harris2013-04-061-48/+48
| | | | | | | | | | | | | | | In Python3 `dict.items()`, `dict.keys()`, and `dict.values()` are iterators. This causes problems when a list is needed so the 2to3 fixer explicitly constructs a list when is finds on of those functions. However, that is usually not necessary, so a lot of the work here has been cleaning up those places where the fix is not needed. The big exception to that is the `numpy/f2py/crackfortran.py` file. The code there makes extensive use of loops that modify the contents of the dictionary being looped through, which raises an error. That together with the obscurity of the code in that file made it safest to let the `dict` fixer do its worst. Closes #3050.
* 2to3: Apply `print` fixer.Charles Harris2013-04-061-5/+5
| | | | | | | Add `print_function` to all `from __future__ import ...` statements and use the python3 print function syntax everywhere. Closes #3078.
* 2to3: Use absolute imports.Charles Harris2013-03-281-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The new import `absolute_import` is added the `from __future__ import` statement and The 2to3 `import` fixer is run to make the imports compatible. There are several things that need to be dealt with to make this work. 1) Files meant to be run as scripts run in a different environment than files imported as part of a package, and so changes to those files need to be skipped. The affected script files are: * all setup.py files * numpy/core/code_generators/generate_umath.py * numpy/core/code_generators/generate_numpy_api.py * numpy/core/code_generators/generate_ufunc_api.py 2) Some imported modules are not available as they are created during the build process and consequently 2to3 is unable to handle them correctly. Files that import those modules need a bit of extra work. The affected files are: * core/__init__.py, * core/numeric.py, * core/_internal.py, * core/arrayprint.py, * core/fromnumeric.py, * numpy/__init__.py, * lib/npyio.py, * lib/function_base.py, * fft/fftpack.py, * random/__init__.py Closes #3172
* 2to3: Replace xrange by range and use list(range(...)) where neededCharles Harris2013-03-271-1/+1
| | | | | | | | | | | | | | | In python3 range is an iterator and `xrange` has been removed. This has two consequence for code: 1) Where a list is needed `list(range(...))` must be used. 2) `xrange` must be replaced by `range` Both of these changes also work in python2 and this patch makes both. There are three places fixed that do not need it, but I left them in so that the result would be `xrange` clean. Closes #3092
* MAINT: Make numpy/f2py/crackfortran docstring read better.Charles Harris2013-03-011-13/+12
| | | | | The copyright and short summary were moved to the top of the docstring with the usage description below.
* 2to3: Put `from __future__ import division in every python file.Charles Harris2013-03-011-126/+129
| | | | | | | | This should be harmless, as we already are division clean. However, placement of this import takes some care. In the future a script can be used to append new features without worry, at least until such time as it exceeds a single line. Having that ability will make it easier to deal with absolute imports and printing updates.
* 2to3: Use modern exception syntax.Charles Harris2013-02-261-4/+4
| | | | Example: except ValueError,msg: -> except ValueError as msg:
* BUG: Fix f2py test_kind.py test.Charles Harris2012-03-171-5/+8
| | | | | Newer Fortran compilers for Intel may support quad precision, so _selected_real_kind_func needs to report that for precisions >= 19.
* BUG[f2py]: fix --include_paths bug. Deprecated --include_paths in favor of ↵Pearu Peterson2011-06-211-5/+11
| | | | --include-paths. Updated docs.
* BUG: fix f2py size variadic macro for Visual C++ 2008 compiler. Also be ↵Pearu Peterson2011-05-181-1/+2
| | | | verbose on unspecified use modules.
* BUG: Fix two argument size support for Fortran module routines. Reverted ↵Pearu Peterson2011-05-061-9/+0
| | | | size-to-shape mapping patch and implemented two argument size function in C.
* STY: Update exception styles, trickier ones.Charles Harris2011-04-051-1/+1
|
* BUG: fix f2py bug in generating interfaces for assumed shape support as an ↵Pearu Peterson2011-03-311-1/+2
| | | | addition to 4d43ec5.
* BUG: fix f2py bug in generating interfaces for assumed shape support.Pearu Peterson2011-03-291-1/+1
|
* BUG: f2py fix to scan literal strings with ! character, fixes ticket #1228Pearu Peterson2011-03-271-1/+1
|
* BUG: fix f2py bug of converting an expression to variable, fixes ticket #1614.Pearu Peterson2011-03-251-25/+44
|
* BUG: fixing selected_real_kind for PowerPCPearu Peterson2011-03-241-2/+7
|
* ENH: f2py: support Fortran size function with two arguments (ticket #1765).Pearu Peterson2011-03-131-1/+10
|
* Merge remote branch 'upstream/master' into f2py-assumed-shapePearu Peterson2011-03-111-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 Peterson2010-12-031-4/+9
| |
| * BUG: Fix ticket 1679.Pearu Peterson2010-12-021-7/+10
| |
* | Fix bug in constructing use statement with only.Pearu Peterson2011-02-281-1/+1
| |
* | Implemented selected_real_kind evaluation, added tests to catch processor ↵Pearu Peterson2011-02-271-2/+11
| | | | | | | | dependencies..
* | WIP: added assumed shape array support to Fortran functions.Pearu Peterson2011-02-251-8/+12
|/
* f2py: fixed issue 1533 (scanning pyf files will report lines that do not ↵Pearu Peterson2010-07-241-1/+1
| | | | match known patterns).
* Introduced intent(align4|align8|align16) attributes. Fixes scipy ticket 794 ↵Pearu Peterson2009-10-251-1/+1
| | | | after using intent(align8) in the corresponding scipy pyf files.
* f2py: fix a bug evaluating parameters with kind function: kind(1.0), ↵Pearu Peterson2009-07-271-2/+2
| | | | kind(1.0d) must be 4, 8, respectively.
* f2py: ignore concatenation of strings in initexpressions.Pearu Peterson2009-04-211-1/+1
|
* Python 3000 fixes for 2to3 [patch by James Watson].Stefan van der Walt2009-03-021-6/+15
|
* Fix a bug.Pearu Peterson2008-12-221-2/+2
|
* Removed unused/redundant imports.Alan McIntyre2008-09-181-1/+0
| | | | PEP8 conformance (only one import per line).
* Fix typo.Pearu Peterson2008-09-091-1/+1
|
* f2py: Allow expressions that contain max/min calls, be used as dimension ↵Pearu Peterson2008-05-191-2/+12
| | | | 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 Peterson2008-05-151-1/+1
|
* Fix bug in parsing initexpr in 'INTEGER, PARAMETER :: ny = nx + 2'Pearu Peterson2008-04-181-1/+1
|
* Fix a long-standing typo preventing the build of scipy.stats.mvn. Sorry ↵Robert Kern2008-04-101-1/+1
| | | | Stefan, no unittest; the original code is not amenable to unittests without a large refactoring.
* Fix intent(callback) when used inside Fortran source.Pearu Peterson2008-01-311-3/+7
|
* Fix typo.Pearu Peterson2007-12-051-1/+1
|