summaryrefslogtreecommitdiff
path: root/tools/win32build/misc/x86analysis.py
Commit message (Collapse)AuthorAgeFilesLines
* MAINT: Remove numpy-macosx-installer and win32build directories.Charles Harris2017-02-251-153/+0
| | | | | | | | The scripts in those directories were used to build windows superpacks and mac dmg files. We now release wheels for both of those platforms. There is little overhead maintaining these scripts, but they are clutter and will eventually bit rot if not used for current systems. So remove them.
* MAINT: Remove commented out code blocksgfyoung2015-12-201-9/+0
|
* DOC: Use print only as function when print_function is imported from __future__gfyoung2015-12-191-3/+3
| | | | Closes gh-6863.
* 2to3: Apply `print` fixer.Charles Harris2013-04-061-8/+8
| | | | | | | Add `print_function` to all `from __future__ import ...` statements and use the python3 print function syntax everywhere. Closes #3078.
* 2to3: Add `from __future__ import ...` to some files that were missed.Charles Harris2013-03-281-1/+2
| | | | | | | With the exception of numpy/distutils/tests/test_exec_command.py, all of these files are script files in tools/osxbuild and tools/win32build. The import in the script files omits `absolute_import` as they are not part of a package.
* 2to3: Remove xreadlines and replace f.readlines() by f where valid.Charles Harris2013-03-051-1/+1
| | | | | | | | | | An open file `f` has been an iterator since python2.3 and `f.xreadlines()` is no longer needed, so replace it with `f`. Also replace `f.readlines()` with `f` where an iterator will do. The replacement of `f.readlines()` is not critical because it is a list in both python2 and python3, but the code is a bit cleaner. Closes #3093
* Add the x86analysis.py script to check instructions set in win binaries.David Cournapeau2009-03-281-0/+161