summaryrefslogtreecommitdiff
path: root/numpy/lib/function_base.py
Commit message (Expand)AuthorAgeFilesLines
* DOC: Harmonize max and min docstrings with each otherendolith2013-05-171-8/+10
* DOC: Mention all min/max functions from all others, clarify differencesendolith2013-05-161-10/+28
* MAINT: Apply 2to3 idioms fixer.Charles Harris2013-05-021-2/+1
* Merge pull request #3280 from seberg/issue-3279seberg2013-04-271-1/+2
|\
| * BUG: np.insert must copy index arraySebastian Berg2013-04-271-1/+2
* | 2to3: Apply the `numliterals` fixer and skip the `long` fixer.Charles Harris2013-04-131-0/+1
|/
* FIX: rename xrange to range in python 2Sebastian Berg2013-04-111-1/+4
* MAINT: np.delete keep old out of bound/negative index behaviorSebastian Berg2013-04-111-9/+23
* FIX: insert/delete fixes and warnings for non-integer indicesSebastian Berg2013-04-111-25/+43
* ENH: larger fixes for np.delete and np.insert functionsSebastian Berg2013-04-111-53/+147
* 2to3: Apply `print` fixer.Charles Harris2013-04-061-1/+1
* Merge pull request #460 from endolith/regex_formattingCharles Harris2013-04-031-1/+1
|\
| * DOC: Used regex to find colons missing spaces which render wrong online, also...endolith2013-03-191-1/+1
* | 2to3: Use absolute imports.Charles Harris2013-03-281-6/+6
* | 2to3: Replace xrange by range and use list(range(...)) where neededCharles Harris2013-03-271-2/+2
|/
* 2to3: Put `from __future__ import division in every python file.Charles Harris2013-03-011-0/+2
* Merge pull request #3047 from charris/2to3-callablenjsmith2013-02-281-1/+2
|\
| * 2to3: Fix callable.Charles Harris2013-02-281-1/+2
* | 2to3: apply exec fixer results.Charles Harris2013-02-281-1/+1
|/
* Update numpy/lib/function_base.pyAndreas Hilboll2013-02-171-1/+1
* BUG: Make nansum work with booleans.Charles Harris2013-02-121-1/+3
* [FIX] preserve memory order in np.copy()Nathaniel J. Smith2012-10-011-2/+4
* MAINT: Use linspace instead of arange in some examples.endolith2012-09-171-3/+3
* BUG: Fix for issues #378 and #392Han Genuit2012-09-071-6/+8
* Merge pull request #352 from HackerSchool12/bugfix808Travis E. Oliphant2012-07-171-13/+7
|\
| * BUG: Ticket #808: Insert was not performing properly when an integer wasLoftie Ellis2012-07-151-13/+7
* | Merge pull request #192 from rgommers/meshgrid3dTravis E. Oliphant2012-07-171-33/+106
|\ \ | |/ |/|
| * STY: meshgrid: some minor changes to address review comments.Ralf Gommers2012-02-051-1/+1
| * TST: meshgrid: test expected shapes for Cartesian and matrix indexing.Ralf Gommers2011-12-281-5/+11
| * BUG: meshgrid: raise error on single input.Ralf Gommers2011-12-281-4/+5
| * MAINT: clean up docstring and some minor items in meshgrid. Remove ndgrid.Ralf Gommers2011-12-131-42/+36
| * ENH: enhance meshgrid to generate 3D grids, sparse grids, matrix indexing.Per A. Brodtkorb2011-12-131-34/+106
* | DOC: merge doc wiki edits. A number of small edits in linalg and lib.Ralf Gommers2012-07-071-3/+8
* | DOC: merge wiki edits. Add percentile to statistics routines (ML suggestion).Ralf Gommers2012-07-071-3/+4
* | Remove maskna API from ndarray, and all (and only) the code supporting itNathaniel J. Smith2012-06-161-10/+2
* | Merge pull request #290 from mforbes/new-vectorize-cleanTravis E. Oliphant2012-06-121-141/+179
|\ \
| * | ENH: Add kwarg support for vectorize (tickets #2100, #1156, and #1487)Michael McNeil Forbes2012-05-311-141/+179
* | | remove unused variables from histogramddJake Vanderplas2012-06-111-2/+0
|/ /
* | DOC: merge wiki doc edits.Ralf Gommers2012-03-031-5/+5
* | ENH: Support datetime64, timedelta64 in gradient. Allow array-like input.Ben Root2012-01-271-2/+11
|/
* ENH: Add function for adding docstrings to ufuncs.Chris Jordan-Squire2011-08-291-1/+7
* ENH: missingdata: Add maskna= parameter to np.copy and ndarray.copyMark Wiebe2011-08-271-2/+11
* ENH: missingdata: trying some more functions to see how they treat NAsMark Wiebe2011-08-271-0/+4
* ENH: Faster asarray_chkfiniteChris Jordan-Squire2011-08-131-2/+1
* BUG: fixed histogramdd bug with empty inputs. Closes #1899.David Huard2011-07-241-3/+3
* BUG: fix asarray_chkfinite to take dtype and order args, as advertisedLars Buitinck2011-07-191-4/+4
* ENH: Fix some functions to use copyto instead of the deprecated putmask.Charles Harris2011-07-091-7/+7
* DOC:BUG: fix percentile examples. Closes #1813.Ralf Gommers2011-04-291-7/+6
* STY: Update exception style, easy ones.Charles Harris2011-04-051-1/+1
* DOC: improve clarity of window function docs.Ralf Gommers2011-04-021-55/+33