summaryrefslogtreecommitdiff
path: root/tools/swig/test/testArray.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix swig testsMathieu Lamarre2020-03-131-46/+46
| | | | | resize typemap issue python 3 bytes vs str issue
* convert shebang from python to python3 (#15687)Changqing Li2020-03-041-1/+1
| | | | Signed-off-by: Changqing Li <changqing.li@windriver.com>
* MAINT: cleanup unused imports; avoid redefinition of importsMike Taves2020-02-061-2/+0
| | | | | | | * Cleanup unused imports (F401) of mostly standard Python modules, or some internal but unlikely referenced modules * Where internal imports are potentially used, mark with noqa * Avoid redefinition of imports (F811)
* MAINT: Remove unnecessary 'from __future__ import ...' statementsJon Dufresne2020-01-031-2/+0
| | | | | As numpy is Python 3 only, these import statements are now unnecessary and don't alter runtime behavior.
* Correct exit code if number of errors % 256 == 0Chris Lamb2015-02-151-1/+1
| | | | | | | For example, we had 256 errors (etc.) our process will exit with a successful error code which is incorrect and/or misleading. Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
* ENH: added std::complex support to numpy.iGlen Mabey2014-11-071-0/+101
| | | | | | numpy.i now includes ready-made typemaps for std::complex<float> and std::complex<double> . Tests were added to testArray using a newly defined ArrayZ class.
* MAINT: Move doc/swig to tools/swig.Charles Harris2014-03-121-0/+284
Also update MANIFEST.in and documentation to reflect the move. The discussion of this change is at #2384. Closes #2384. Closes #4374.