summaryrefslogtreecommitdiff
path: root/numpy/distutils/command/build_py.py
Commit message (Collapse)AuthorAgeFilesLines
* 2to3: Put `from __future__ import division in every python file.Charles Harris2013-03-011-0/+1
| | | | | | | | 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.
* REF: Replace filters with list comprehensions.Charles Harris2013-02-281-1/+1
| | | | | | 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 Harris2013-02-281-1/+1
| | | | | Generally, this involves using list comprehension, or explicit list construction as `filter` is an iterator in Python 3.
* Fix bug to ensure that swig generated .py files are installed.Pearu Peterson2010-08-251-0/+7
|
* Replace type(a) is (something) with appropiate is_string/is_sequence testscookedm2006-02-011-1/+2
|
* Fixed setup.py sdist.Pearu Peterson2006-01-241-1/+11
|
* __config__.py files are generated through py_modules list. Added get_info ↵Pearu Peterson2006-01-241-1/+2
| | | | method to Configuration.
* Moved scipy directory to numpyTravis Oliphant2006-01-041-0/+13