summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* BUG: Fix bad memory access for 0-sized outputs in numpy dotSebastian Berg2012-12-012-13/+16
* Merge pull request #2703 from astrofrog/fix-masked-fill-viewRalf Gommers2012-11-273-6/+94
|\
| * Minor fix to fill_view testThomas Robitaille2012-11-221-1/+1
| * Improvements to ndarray.view docstringThomas Robitaille2012-11-222-6/+9
| * Clarified MaskedArray.view documentation, and added more testsThomas Robitaille2012-11-222-10/+48
| * Added test for fill_value behavior in MaskedArray.view, and use fill_value to...Thomas Robitaille2012-11-202-1/+33
| * Added a `fill_value` keyword to `MaskedArray.view`, and clarify the behavior ...Thomas Robitaille2012-11-201-4/+16
| * Don't reset the fill_value of a MaskedArray when calling view() with no dtypeThomas Robitaille2012-10-311-1/+4
* | Merge pull request #2758 from rgommers/cython-warningsRalf Gommers2012-11-261-0/+2
|\ \
| * | TST: also filter Cython warnings in NoseTester. See PR-432.Ralf Gommers2012-11-211-0/+2
* | | Merge pull request #2691 from stefanv/histogram_2d_docRalf Gommers2012-11-261-9/+11
|\ \ \
| * | | DOC: Further tweaks to histogram2d docstring.Stefan van der Walt2012-11-261-9/+11
* | | | Merge pull request #484 from endolith/rfftfreq_and_fft_docstringsRalf Gommers2012-11-264-25/+94
|\ \ \ \ | |/ / / |/| | |
| * | | DOC: remove "the" from description, single backticks are for variables onlyendolith2012-11-261-2/+2
| * | | DOC: Reword "Hermite symmetry", clarify units of sample spacingendolith2012-11-262-13/+16
| * | | DOC: Fix length mistake in docstring (rfft length is n//2+1, not n)endolith2012-11-251-1/+1
| * | | DOC: Add rfftfreq to Helper routines in fft module's docstringendolith2012-11-251-0/+1
| * | | TST: Add a test for the rfftfreq() functionendolith2012-11-251-0/+11
| * | | DOC: Clarify the frequencies of the rfft using fs, borrowing text from numpy....endolith2012-11-241-6/+8
| * | | MAINT: Don't use assert to check variable typeendolith2012-11-181-2/+4
| * | | DOC: Clarify size of odd-length FFTs, default `d` for fftfreq, and some PEP8 ...endolith2012-10-132-12/+14
| * | | ENH: Add rfftfreq() for numpy's rfft(), which behaves differently from scipy'...endolith2012-10-131-1/+49
* | | | Merge pull request #2765 from charris/fix-travis-heisenbugCharles Harris2012-11-253-3/+13
|\ \ \ \
| * | | | MAINT: In test_varstd_specialcases out parameters should be 0-d.Charles Harris2012-11-231-2/+2
| * | | | MAINT: Avoid unneeded call in masked array std method.Charles Harris2012-11-231-1/+1
| * | | | TST: Add test for gh-2757.Charles Harris2012-11-231-0/+9
| * | | | BUG: gh-2757, masked array var method should zero masked out parameter.Charles Harris2012-11-231-0/+1
* | | | | Merge pull request #2766 from g2p/masterRalf Gommers2012-11-241-7/+5
|\ \ \ \ \
| * | | | | Code cleanupGabriel2012-11-241-1/+1
| * | | | | Assume we can use sys.stdout.fileno() and friends.Gabriel2012-11-231-7/+5
| |/ / / /
* | | | | BUG: Remove print statement in test_endian_recarray.Charles Harris2012-11-231-2/+0
* | | | | BUG: Import run_module_suite in test_matlib.pyCharles Harris2012-11-231-1/+1
|/ / / /
* | | | Merge pull request #2733 from astrofrog/fix-fill-value-python3Ralf Gommers2012-11-212-1/+6
|\ \ \ \
| * | | | Change test to use np.testing.assert_Thomas Robitaille2012-11-201-1/+1
| * | | | Fix setting of fill_value for string columns in Python 3Thomas Robitaille2012-11-132-1/+6
* | | | | Merge pull request #2754 from seberg/reshape_segfault_issueCharles Harris2012-11-211-1/+1
|\ \ \ \ \
| * | | | | BUG: Incorrect type in _attempt_nocopy_reshapeSebastian Berg2012-11-211-1/+1
| |/ / / /
* | | | | Merge pull request #2726 from peterjc/msvc10Ralf Gommers2012-11-192-5/+12
|\ \ \ \ \
| * | | | | Handle MSVC v10 in _MSVCRVER_TO_FULLVERpeterjc2012-11-121-4/+7
| * | | | | Cope with two digit major number in MSCV v10peterjc2012-11-121-1/+4
| * | | | | Include msvcr100 (MSVC v10 aka 2010) in msvc_runtime_library()peterjc2012-11-121-0/+1
* | | | | | Merge pull request #2749 from pv/f2py-docstringCharles Harris2012-11-175-22/+68
|\ \ \ \ \ \
| * | | | | | TST: f2py: rewrite strings to be easier to readPauli Virtanen2012-11-172-26/+39
| * | | | | | ENH: f2py: add 'Wrapper for ...' text to the docstringPauli Virtanen2012-11-173-2/+4
| * | | | | | ENH: f2py: generate docstrings in Numpy docstring formatPauli Virtanen2012-11-175-22/+53
| | |_|_|/ / | |/| | | |
* | | | | | BUG: core: wrap npy_math.h into extern "C" so that it works correctly in C++Pauli Virtanen2012-11-171-0/+8
|/ / / / /
* | | | | Merge pull request #2736 from certik/fix415Ralf Gommers2012-11-141-0/+2
|\ \ \ \ \
| * | | | | FIX: Mark a tests knownfail on HurdOndřej Čertík2012-11-131-0/+2
* | | | | | Merge pull request #2708 from ContinuumIO/base_traversalOndřej Čertík2012-11-132-7/+23
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | BUG: Update base-traversal algorithm for array sub-classes so as to stop the ...Travis E. Oliphant2012-11-062-7/+23
| | |_|_|/ | |/| | |