summaryrefslogtreecommitdiff
path: root/numpy/core/numeric.py
Commit message (Expand)AuthorAgeFilesLines
* DOC: add example for isscalar on strings (#9361)Christoph Boeddeker2017-08-131-0/+2
* MAINT: Use moveaxis instead of rollaxis internally (#9475)Nico Schlömer2017-08-101-5/+8
* MAINT: Simplify test for string-likesEric Wieser2017-08-051-2/+1
* MAINT/DOC: Use builtin when np.{x} is builtins.{x}.Eric Wieser2017-08-051-4/+4
* DOC: fix versionadded in docstring for moveaxisStephan Hoyer2017-07-301-1/+1
* ENH: Einsum calls BLAS if it advantageous to do so (#9425)Daniel Smith2017-07-181-2/+2
* ENH: Make 0-length dim handling of tensordot consistent with dot/einsumPim de Haan2017-06-221-5/+5
* DOC: Link to ufunc.outer from np.outerEric Wieser2017-06-041-1/+4
* Merge pull request #9214 from eric-wieser/no-one-arg-whereCharles Harris2017-06-031-1/+1
|\
| * MAINT: Don't internally use the one-argument whereEric Wieser2017-06-031-1/+1
* | BUG: KeyboardInterrupt is swallowed all over the placeEric Wieser2017-06-031-4/+4
|/
* ENH: str/repr fixed for 0d-arraysAllan Haldane2017-05-161-1/+1
* DEP: Remove alter/restore dot methodsMads Ohm Larsen2017-04-191-57/+1
* DOC: Replace reference to np.swapaxis with np.swapaxes (#8914)Juan Nunez-Iglesias2017-04-081-1/+1
* DOC: Fix for issues #7622 and #7914Stefan Peterson2017-04-051-2/+2
* MAINT: Rename _validate_axis, and document itEric Wieser2017-03-281-8/+50
* MAINT: use normalize_axis_index in np.rollEric Wieser2017-03-281-6/+4
* MAINT: Use normalize_axis_index in crossEric Wieser2017-03-281-7/+4
* MAINT: have _validate_axis delegate to normalize_axis_indexEric Wieser2017-03-281-7/+7
* ENH: Fix alignment of repr for array subclassesEric Wieser2017-02-251-10/+10
* MAINT: replace len(x.shape) with x.ndimEric Wieser2017-02-241-3/+3
* BUG: Remove extra digit in binary_repr at limitgfyoung2017-02-231-2/+8
* MAINT: Be specific about where AxisError is raisedEric Wieser2017-02-201-2/+2
* ENH: For compatibility, use an exception type that subclasses both original t...Eric Wieser2017-02-201-2/+2
* MAINT: Use normalize_axis_index in all python axis checkingEric Wieser2017-02-201-7/+4
* ENH: Improve the efficiency of indicesEric Wieser2017-02-181-7/+4
* DEP: Fix escaped string characters deprecated in Python 3.6.Charles Harris2016-12-141-2/+2
* DOC: Clarified when a copy is made in numpy.asarray [skip ci]Michael Seifert2016-11-031-2/+2
* ENH: Allows contraction order optimization in einsum function.Daniel Smith2016-09-261-2/+2
* DOC, MAINT: Update error message in rollaxis.gfyoung2016-09-111-4/+4
* DOC: change version references from x.y to x.y.zPierre de Buyl2016-09-071-1/+1
* DOC: change version references from x.y to x.y.zPierre de Buyl2016-09-071-3/+3
* DOC: change Numpy to NumPy in dosctrings and commentsPierre de Buyl2016-09-061-11/+11
* ENH: Add stacklevel to all (or almost all) our function callsSebastian Berg2016-09-021-4/+6
* ENH: added axis param for np.count_nonzerogfyoung2016-08-041-2/+87
* MAINT: Cleanp of random stuffJoseph Fox-Rabinovitz2016-05-041-58/+63
* ENH: Allow rolling multiple axes at the same time.Antony Lee2016-04-021-22/+46
* MAINT: np.full defaults to the filler's dtype.Antony Lee2016-03-201-8/+5
* BUG: Fix binary_repr for negative numbersgfyoung2016-03-131-44/+46
* DOC: Fixed math rendering in tensordot docs.Simon Gibbons2016-02-251-3/+3
* DOC: base_repr *can* handle negative integers.Nathaniel Beaver2016-02-011-1/+1
* BUG: check lower limit of base in base_repr.Nathaniel Beaver2016-02-011-0/+2
* MAINT: ensureisclose returns scalar when called with two scalarsAndrew Nelson2016-01-151-1/+5
* ENH: moveaxis functionStephan Hoyer2016-01-091-9/+98
* DOC: Use print only as function when print_function is imported from __future__gfyoung2015-12-191-4/+4
* ENH: reimplement may_share_memory in C to improve its performancePauli Virtanen2015-11-121-1/+3
* BUG: Make allclose return python bool.Charles Harris2015-11-041-1/+2
* DOC: Update documentation for isfortran.Charles Harris2015-11-011-2/+6
* DEP: Remove warning for `full` when dtype is set.Antony Lee2015-10-111-3/+3
* FutureWarning for np.full(..., non-float).Antony Lee2015-09-281-2/+7