| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | DOC: tweak the release notes for separate compilation.enable_separate_by_defaultenable_separate_by_default | David Cournapeau | 2013-01-21 | 1 | -1/+6 |
| | | |||||
| * | DOC: mention the change of default for separate compilation. | David Cournapeau | 2013-01-21 | 1 | -0/+4 |
| | | |||||
| * | FEAT: use separate build by default. | David Cournapeau | 2013-01-21 | 3 | -4/+4 |
| | | |||||
| * | REF: make the separate compilation env handling a tad simpler. | David Cournapeau | 2013-01-21 | 2 | -10/+2 |
| | | |||||
| * | BUG: fix separate compilation mode for bento build. | David Cournapeau | 2013-01-21 | 1 | -4/+16 |
| | | |||||
| * | BUG: fix inclusion of private hader in #d2122ea1f458e9429b692111238f7b9f4a852db2 | David Cournapeau | 2013-01-21 | 1 | -1/+1 |
| | | |||||
| * | Merge pull request #2923 from baeuml/swig-fix-python3 | Charles Harris | 2013-01-20 | 1 | -1/+3 |
| |\ | | | | | fix numpy.i for python 3 | ||||
| | * | fix numpy.i for python 3 | Martin Baeuml | 2013-01-16 | 1 | -1/+3 |
| | | | | | | | | | | | | | | | PyFile_Check and PyInstance_Check have been removed from the C API for python 3. This removes calls to those two functions from numpy.i for PY_MAJOR_VERSION >= 3 so that it builds with a python 3 Python.h. | ||||
| * | | Merge pull request #2936 from charris/fix-print-negative-float-zero | Charles Harris | 2013-01-20 | 2 | -1/+30 |
| |\ \ | | | | | | | Fix print negative float zero | ||||
| | * | | TST: Add test for printing of scalar values. | Charles Harris | 2013-01-20 | 1 | -0/+29 |
| | | | | |||||
| | * | | BUG: gh-2935, fix printing of scalar float -0.0. | Charles Harris | 2013-01-20 | 1 | -1/+1 |
| |/ / | | | | | | | | | | | | | | | | | | | | | | | The issue was that the string value of scalar floating types equal to -0.0 lacked a trailing ".0". >>> print np.float64(-0.0) -0 The problem resulted from using val < 0 to check for a leading negative sign. That expression evaluates false when val = -0.0, and the need to append ".0" was not detected. | ||||
| * | | Merge pull request #2933 from seberg/result_type-segfault | Charles Harris | 2013-01-19 | 2 | -1/+2 |
| |\ \ | | | | | | | BUG: Fix segfault in np.result_type for None input. | ||||
| | * | | BUG: Fix segfault in np.result_type for None input. | Sebastian Berg | 2013-01-19 | 2 | -1/+2 |
| | |/ | | | | | | | | | Makes behavior identical to np.dtype(None), which fits to how the function works. | ||||
| * | | Merge pull request #2928 from mwiebe/string_init_memleak | njsmith | 2013-01-18 | 1 | -1/+5 |
| |\ \ | |/ |/| | BUG: Fix memory leak in ndarray construction from strings (gh-2927) | ||||
| | * | BUG: Fix memory leak in ndarray construction from strings (gh-2927) | Mark Wiebe | 2013-01-17 | 1 | -1/+5 |
| |/ | |||||
| * | Merge pull request #2914 from charris/remove-scons-support | Charles Harris | 2013-01-15 | 39 | -2264/+12 |
| |\ | | | | | Remove scons support | ||||
| | * | DEP: Remove more references to scons related files. | Charles Harris | 2013-01-14 | 4 | -7/+1 |
| | | | | | | | | | | | | | | | These references were in MANIFEST.in, doc/summarize.py, release.sh, and numpy/testing/noseclasses.py and involved scons files that have been removed, mostly setupscons.py and setupsconsegg.py that were in the top level. | ||||
| | * | BUG: Need to keep pointer to using scons in HOWTO_RELEASE.rst.txt. | Charles Harris | 2013-01-13 | 1 | -1/+2 |
| | | | |||||
| | * | BUG: Need to keep SCons support in cpucaps and cpuid. | Charles Harris | 2013-01-13 | 2 | -0/+13 |
| | | | | | | | | | These tools are not directly related to numpy builds. | ||||
| | * | DOC: Document removal of SCons support in doc/release/1.8-notes.rst. | Charles Harris | 2013-01-13 | 1 | -3/+8 |
| | | | |||||
| | * | DEP: Remove scons related files and code. | Charles Harris | 2013-01-13 | 37 | -2269/+4 |
| | | | | | | | | | | | | | | | | | | | 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. | ||||
| * | | Merge pull request #2897 from ContinuumIO/ndindex_fix | njsmith | 2013-01-15 | 4 | -7/+41 |
| |\ \ | | | | | | | Fix for #2895 ndindex failing | ||||
| | * | | Fix 0-d ndincr to have correct return value. | Travis E. Oliphant | 2013-01-11 | 1 | -1/+1 |
| | | | | |||||
| | * | | Fix the test for numpy.ndindex() | Travis E. Oliphant | 2013-01-11 | 2 | -5/+24 |
| | | | | | | | | | | | | | | | | Fix ndindex for 0-d arrays. Add tests for tuple arguments to ndindex | ||||
| | * | | Use super instead of direct access to inheritance. | Travis E. Oliphant | 2013-01-10 | 1 | -1/+1 |
| | | | | |||||
| | * | | Fix the 0-d patch so it doesn't change the non 0-d iterator | Travis E. Oliphant | 2013-01-10 | 1 | -11/+11 |
| | | | | |||||
| | * | | Fix ndindex for 0-d arrays. | Travis E. Oliphant | 2013-01-10 | 1 | -1/+10 |
| | | | | |||||
| | * | | Fix the test for numpy.ndindex() | Travis E. Oliphant | 2013-01-10 | 1 | -1/+1 |
| | | | | |||||
| | * | | Add test for __array_interface__ | Jay Bourque | 2013-01-09 | 1 | -0/+7 |
| | | | | |||||
| | * | | Add test for optional size argument for ndindex | Jay Bourque | 2013-01-09 | 1 | -0/+4 |
| | | | | |||||
| | * | | Fix ndindex issue | Jay Bourque | 2013-01-09 | 1 | -5/+0 |
| | | | | | | | | | | | | | | | | Call to ndindex() with no arguments results in a ValueError exception, whereas before commit ca27396b, a call with no arguments was allowed. Issue is due to unneeded check for shape tuple size. | ||||
| * | | | Merge pull request #2907 from seberg/nonarray-assignment-master | njsmith | 2013-01-13 | 3 | -4/+26 |
| |\ \ \ | |_|/ |/| | | Nonarray assignment regression for boolean indexing and 1d unsafe casting | ||||
| | * | | BUG: Make 1d fancy indexing special case use unsafe_casting | Sebastian Berg | 2013-01-13 | 2 | -1/+5 |
| | | | | | | | | | | | | | | | | Also make sure right hand side is converted safely to the right type if it is not an array though. | ||||
| | * | | BUG: Convert non-array rhs for boolean assignment with correct dtype | Sebastian Berg | 2013-01-13 | 2 | -3/+21 |
| | | | | | | | | | | | | | | | | | | | | | | | | | Enforcing the left hand side datatype for a non-array right hand side argument in index assignments was the behavior before 1.7. and is the general behaviour here. (note this means a non-array right hand side checks for NaN, etc. if the left hand side is integer, but an array right hand side does not) | ||||
| * | | | Merge pull request #2909 from argriffing/patch-2 | Charles Harris | 2013-01-12 | 1 | -4/+0 |
| |\ \ \ | | | | | | | | | remove a confusing docstring line | ||||
| | * | | | remove a confusing docstring line | argriffing | 2013-01-11 | 1 | -4/+0 |
| | |/ / | | | | | | | | | | | | | | | | | | | | | | ones_like: "With default parameters, is equivalent to a.copy().fill(1)." This is not technically true, because 'fill' returns None. | ||||
| * | | | Merge pull request #2910 from rutsky/doctest_svd_typo | njsmith | 2013-01-12 | 1 | -1/+1 |
| |\ \ \ | | | | | | | | | Fix typo in SVD usage example | ||||
| | * | | | Fix typo in SVD usage example | Vladimir Rutsky | 2013-01-12 | 1 | -1/+1 |
| | |/ / | |||||
| * | | | Merge pull request #2908 from argriffing/patch-1 | Charles Harris | 2013-01-11 | 1 | -1/+1 |
| |\ \ \ | |/ / |/| | | Update numpy/core/code_generators/ufunc_docstrings.py | ||||
| | * | | Update numpy/core/code_generators/ufunc_docstrings.py | argriffing | 2013-01-11 | 1 | -1/+1 |
| |/ / | |||||
| * | | Merge pull request #2901 from hrw/master | njsmith | 2013-01-10 | 2 | -0/+3 |
| |\ \ | |/ |/| | Add support for AArch64 architecture | ||||
| | * | Added support for AArch64 architecture | Marcin Juszkiewicz | 2013-01-10 | 2 | -0/+3 |
| |/ | | | | Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> | ||||
| * | Merge pull request #2838 from charris/test-numpy-constants | Charles Harris | 2013-01-06 | 1 | -0/+13 |
| |\ | | | | | TST: Add tests for constants. | ||||
| | * | TST: Add tests for constants. | Charles Harris | 2012-12-16 | 1 | -0/+13 |
| | | | | | | | | | | | Test the values of np.pi, np.e, and np.euler_gamma to make sure they are correct to relative tolerance 1e-15. | ||||
| * | | Merge pull request #2882 from seberg/issue2503 | seberg | 2013-01-06 | 5 | -19/+77 |
| |\ \ | | | | | | | BUG: Fix CheckStrides and strides setter checks for available memory | ||||
| | * | | MAINT: Minor cleanup | Sebastian Berg | 2013-01-06 | 3 | -7/+6 |
| | | | | | | | | | | | | | Adding const and removing old comment. | ||||
| | * | | MAINT: Move offset calculations into special function | Sebastian Berg | 2013-01-03 | 5 | -42/+61 |
| | | | | | | | | | | | | | | | | Also adds a test to check offset calculation is correct when setting strides for a base array with negative strides. | ||||
| | * | | BUG: Fix CheckStrides and strides setter checks for available memory | Sebastian Berg | 2013-01-03 | 3 | -15/+55 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This changes the logic of PyArray_CheckStrides to really check the full extent the new array will have. It also changes the stride setting to calculate the full real extent of the underlying array without assuming (usually correctly) that the strides of the base array are regular. Add some tests for cases that previously failed. This "closes Issue gh-2503" | ||||
| * | | | Merge pull request #2888 from charris/fix-headers | njsmith | 2013-01-05 | 6 | -54/+27 |
| |\ \ \ | | | | | | | | | Fix headers | ||||
| | * | | | MAINT: Remove newly defined non-prefixed macros from noprefix.h. | Charles Harris | 2013-01-05 | 1 | -15/+0 |
| | | | | | | | | | | | | | | | | | There was a chance that they could conflict with user defined macros. | ||||
