summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
| * | TST: add test for Python 3.4 _ast.NameConstantChristoph Gohlke2013-09-081-0/+4
| * | ENH: add support for Python 3.4 ast.NameConstantChristoph Gohlke2013-09-081-0/+3
|/ /
* | Merge pull request #3698 from cgohlke/patch-1Charles Harris2013-09-072-6/+9
|\ \
| * | BUG: check axes and window length input for all integer typesChristoph Gohlke2013-09-071-5/+7
| * | ENH: export py3k.integer_types from numpy.compatChristoph Gohlke2013-09-071-1/+2
|/ /
* | Merge pull request #3697 from charris/fix-simd-for-windowsCharles Harris2013-09-071-1/+12
|\ \
| * | BUG: Fix UFUNC_CHECK_STATUS to work on both 32 and 64 bit Windows.Charles Harris2013-09-071-1/+12
|/ /
* | Merge branch 'gradient'Charles Harris2013-09-072-25/+86
|\ \
| * | ENH: Improve accuracy of numpy.gradient at edgesdanieljfarrell2013-09-072-25/+86
| |/
* | Merge pull request #3694 from juliantaylor/test-rational-fixCharles Harris2013-09-071-0/+12
|\ \ | |/ |/|
| * BUG: fix test_rational PyNumberMethods for python3Julian Taylor2013-09-071-0/+12
|/
* Merge pull request #3691 from juliantaylor/windows-fpu-fixCharles Harris2013-09-061-1/+5
|\
| * BUG: fix windows fpu flag check for mixed x87 and sse instructionsJulian Taylor2013-09-061-1/+5
* | Merge pull request #3676 from charris/pep8-polynomial-testsCharles Harris2013-09-069-523/+504
|\ \
| * | STY: Make numpy/polynomial/tests/*.py PEP8 compliant.Charles Harris2013-09-039-523/+504
* | | Merge pull request #3524 from cowlicks/ufunc-overrideCharles Harris2013-09-0612-4/+795
|\ \ \
| * | | DOC: Update release notes.Blake Griffith2013-09-061-0/+8
| * | | BLD TRAVIS: Added libatlas to travis build so it can test BLAS stuff.Blake Griffith2013-09-051-0/+2
| * | | BLD: Added ufunc_override.h to setup.py.Blake Griffith2013-09-051-1/+2
| * | | TST: Add ufunc override tests.Blake Griffith2013-09-053-0/+217
| * | | ENH: Add ufunc override functionality to ufuncs and dots.Blake Griffith2013-09-053-3/+95
| * | | ENH: Add ufunc override API.Blake Griffith2013-08-311-0/+195
| * | | DOC: Add NEP and documentation for ufunc overrides.Blake Griffith2013-08-312-0/+276
* | | | Merge pull request #3689 from charris/fix-gitignoreCharles Harris2013-09-051-1/+1
|\ \ \ \
| * | | | BUG: .gitignore ignores all release directories.Charles Harris2013-09-051-1/+1
* | | | | Merge pull request #3688 from jseabold/update-release-notesCharles Harris2013-09-051-0/+4
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | DOC: Update release notes for openblas build.Skipper Seabold2013-09-051-0/+4
|/ / / /
* | | | Merge pull request #3642 from jseabold/openblas-installCharles Harris2013-09-052-61/+90
|\ \ \ \ | |_|_|/ |/| | |
| * | | Use the default install location of OpenBLAS in the exampleOlivier Grisel2013-09-041-3/+3
| * | | site.cfg.example should not reference blas_opt and lapack_optOlivier Grisel2013-09-041-52/+34
| * | | Make vecLib / Accelerate not shadow other optimized builds under OSXOlivier Grisel2013-09-041-23/+33
| * | | BLD: Update with information about openblas.Skipper Seabold2013-08-201-0/+15
| * | | Add support for using openblas for the _dotblas function.Ake Sandgren2013-08-201-1/+23
* | | | Merge pull request #3657 from charris/add-hash-method-to-polynomialsCharles Harris2013-09-042-0/+4
|\ \ \ \
| * | | | BUG: Set __hash__ = None for non-hashable classes.Charles Harris2013-08-282-0/+4
* | | | | Merge pull request #3678 from charris/fix-wrong-variable-typeCharles Harris2013-09-041-2/+2
|\ \ \ \ \
| * | | | | BUG: PyArray_PyIntAsIntp had variable size check wrong way around.Charles Harris2013-09-031-2/+2
* | | | | | Merge pull request #3673 from charris/pep8-lib-testsCharles Harris2013-09-0319-1086/+1246
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | STY: Make numpy/lib/test/*.py PEP8 compliant.Charles Harris2013-09-0319-1086/+1246
* | | | | | Merge pull request #3675 from charris/revert-merge-pr-3567Charles Harris2013-09-031-214/+12
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | |
| * | | | | Revert "Merge pull request #3567 from arinkverma/avoid_conversion"Charles Harris2013-09-031-214/+12
|/ / / / /
* | | | | Merge pull request #3674 from charris/add-to-gitignoreRalf Gommers2013-09-021-0/+4
|\ \ \ \ \
| * | | | | ENH: Add paver generated release directory to .gitignore.Charles Harris2013-09-021-0/+4
|/ / / / /
* | | | | Merge pull request #3672 from charris/update-pavementRalf Gommers2013-09-021-11/+3
|\ \ \ \ \
| * | | | | MAINT: Update pavement.py script.Charles Harris2013-09-021-11/+3
* | | | | | Merge pull request #3567 from arinkverma/avoid_conversionCharles Harris2013-09-021-12/+214
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | Check for error value by PyLong_AsUnsignedLong as (unsigned long)-1Arink Verma2013-08-311-1/+1
| * | | | | Replaced PyInt_As_Long with PyInt_AsLong and errorcheckingArink Verma2013-08-301-10/+27
| * | | | | Added PyInt_CheckExact for python < 3 and error check for PyLong_AsLongArink Verma2013-08-301-21/+34
| * | | | | Moved int test cases to pr#3592Arink Verma2013-08-301-28/+0