Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-05-10 | MAINT: Update master branch for 1.14.0 development. | Charles Harris | 6 | -3/+52 | |
Post 1.13.x branch housekeeping. | |||||
2017-05-10 | Merge pull request #9087 from eric-wieser/fix-ufunc-resolution | Julian Taylor | 10 | -122/+175 | |
BUG: __array_ufunc__ should always be looked up on the type, never the instance | |||||
2017-05-10 | MAINT: fix intp formatting warnings | Julian Taylor | 1 | -23/+24 | |
2017-05-10 | MAINT: Remove avoidable warnings | Eric Wieser | 3 | -5/+3 | |
2017-05-10 | Merge pull request #9080 from charris/release-notes-and-mailmap | Charles Harris | 2 | -121/+142 | |
MAINT, DOC: Update 1.13.0 release notes and .mailmap | |||||
2017-05-10 | Merge pull request #9050 from juliantaylor/fortranobj-path | Charles Harris | 2 | -9/+50 | |
BUG: distutils, add compatiblity python parallelization | |||||
2017-05-10 | MAINT: use if instead of loop | Eric Wieser | 1 | -31/+21 | |
2017-05-10 | BUG: Fix inconsistent lookup of __array_ufunc__. | Eric Wieser | 5 | -43/+53 | |
Previously, we would check if the attribute existed on the class, yet use it from the instance. This also cuts 3 lookups of `__array_ufunc__` down to one. | |||||
2017-05-10 | MAINT: Fix warnings about int vs intp | Eric Wieser | 1 | -9/+9 | |
2017-05-10 | MAINT: Distinguish "correct" special method lookups from incorrect ones | Eric Wieser | 6 | -45/+99 | |
This also corrects a broken short-circuit when looking up __array_ufunc__ | |||||
2017-05-10 | Merge pull request #9070 from ahaldane/silence_join_by | Eric Wieser | 2 | -6/+49 | |
BUG: Preserve field order in join_by, avoids FutureWarning | |||||
2017-05-09 | BUG: Preserve field order in join_by, avoids FutureWarning | Allan Haldane | 2 | -6/+49 | |
Fixes #8940 | |||||
2017-05-09 | DOC: Update 1.13 release notes. | Charles Harris | 1 | -121/+137 | |
* Rearrange entries * Add "New functions" section * Replace `~` by `-`. [ci skip] | |||||
2017-05-09 | MAINT: Update .mailmap to include new contributers. | Charles Harris | 1 | -0/+5 | |
[ci skip] | |||||
2017-05-09 | Merge pull request #9077 from eric-wieser/object-recursion | Julian Taylor | 2 | -1/+33 | |
BUG: Prevent stackoverflow on self-containing arrays | |||||
2017-05-09 | TST: Add missing tests for bool scalar conversion | Eric Wieser | 1 | -0/+22 | |
2017-05-09 | Merge pull request #9054 from eric-wieser/fix-pep3118 | ahaldane | 2 | -127/+172 | |
BUG: Various fixes to _dtype_from_pep3118 | |||||
2017-05-09 | BUG: Don't silence errors in bool(object_array) | Eric Wieser | 1 | -0/+4 | |
Fixes #9078 | |||||
2017-05-09 | BUG: Prevent stackoverflow on self-containing arrays | Eric Wieser | 1 | -1/+7 | |
Approaches #8306. This still errors, but it does so at a python level, without a segfault. | |||||
2017-05-09 | Merge pull request #9074 from scop/py36esc | Charles Harris | 2 | -5/+5 | |
MAINT: Python 3.6 invalid escape sequence deprecation fixes | |||||
2017-05-09 | Merge pull request #8846 from gfyoung/randint-extreme-range | Charles Harris | 3 | -15/+60 | |
BUG: Buttress handling of extreme values in randint | |||||
2017-05-09 | Merge pull request #9026 from eric-wieser/ufunc_docstrings | Charles Harris | 6 | -201/+197 | |
ENH: Show full PEP 457 argument lists for ufuncs | |||||
2017-05-09 | ENH: Python 3.6 invalid escape sequence deprecation fixes | Ville Skyttä | 2 | -5/+5 | |
https://docs.python.org/3/whatsnew/3.6.html#deprecated-python-behavior | |||||
2017-05-09 | Merge pull request #9075 from scop/spelling | Jaime | 49 | -60/+60 | |
ENH: Spelling fixes | |||||
2017-05-09 | ENH: Spelling fixes | Ville Skyttä | 49 | -60/+60 | |
2017-05-09 | BUG: Buttress handling of extreme values in randint | gfyoung | 3 | -15/+60 | |
2017-05-09 | Merge pull request #9072 from njsmith/preserve-multiarray-import-error | Julian Taylor | 1 | -2/+4 | |
BUG: if importing multiarray fails, don't discard the error message | |||||
2017-05-08 | BUG: if importing multiarray fails, don't discard the error message | Nathaniel J. Smith | 1 | -2/+4 | |
This will hopefully make it easier to debug problems like those seen in gh-8653. | |||||
2017-05-08 | DOC: Correct parameter names for spacing and invert | Eric Wieser | 1 | -2/+2 | |
2017-05-08 | DOC: Simplify the output of help(ufunc) | Eric Wieser | 1 | -37/+21 | |
The distinction between unary and binary is not too helpful, and ignores the fact that trinary ufuncs can exist. Also add a link to the ufunc docs | |||||
2017-05-08 | DOC: Remove explanation of exception due to out | Eric Wieser | 1 | -20/+0 | |
This was covered by very few ufuncs, and is probably better to leave out. | |||||
2017-05-08 | DOC: Refer to main ufunc docs for kwargs | Eric Wieser | 2 | -83/+102 | |
2017-05-08 | DOC: Show full argument lists for ufuncs | Eric Wieser | 3 | -59/+72 | |
2017-05-08 | Merge pull request #9063 from shoyer/divmod | Eric Wieser | 17 | -193/+348 | |
ENH: add np.divmod ufunc | |||||
2017-05-07 | DOC: fix docstring for np.isin | Stephan Hoyer | 1 | -0/+1 | |
2017-05-07 | DOC: update ufunc overides NEP with __divmod__ | Stephan Hoyer | 1 | -4/+7 | |
2017-05-07 | ENH: switch ndarray.__divmod__ to use np.divmod | Stephan Hoyer | 7 | -171/+146 | |
2017-05-07 | ENH: add divmod support to NDArrayOperatorsMixin | Stephan Hoyer | 2 | -40/+60 | |
2017-05-07 | ENH: add np.divmod ufunc | Stephan Hoyer | 9 | -0/+156 | |
2017-05-08 | BUG: Move ctypes ImportError catching to appropriate place (#8898) | davidjn | 2 | -17/+52 | |
This fixes a regression in 3c1a13dea6a7e189675977ad65ea230ce4816061, restoring the behaviour intended by eee00f8f7e15592a048c8b841aef9ea81faa0fda. This also extends the support on ctype-less systems for `arr.ctypes.shape` and `arr.ctypes.strides`. The dummy_ctype object is a naive fake used when ctypes is not importable. It does not intend to fake any ctypes behavior, but provides a duck-typed interface so that method calls do not fail. The get_shape and get_strides refactors take advantage of other instance methods and reduce code duplication. | |||||
2017-05-07 | Merge pull request #9058 from charris/update-warning-message | Charles Harris | 2 | -4/+14 | |
MAINT: Update FutureWarning message. | |||||
2017-05-07 | Merge pull request #9060 from longjon/always-conjugate2 | Charles Harris | 3 | -0/+23 | |
DEP: deprecate ndarray.conjugate's no-op fall through for non-numeric types | |||||
2017-05-07 | DEP: deprecate ndarray.conjugate's no-op fall through for non-numeric | Jonathan L Long | 3 | -0/+23 | |
types This behavior is contrary to np.conjugate (which will error on non-numeric types), even though documentation claims they are identical. This deprecation favors failing fast. | |||||
2017-05-07 | Merge pull request #8421 from seberg/isnat | Charles Harris | 12 | -46/+212 | |
ENH: Add isnat function and make comparison tests NAT specific | |||||
2017-05-07 | DOC: Document isnat addition and related warning changes | Sebastian Berg | 1 | -0/+16 | |
2017-05-07 | BUG: Remove warning NaT filter from masked array test utils | Sebastian Berg | 2 | -7/+5 | |
This may show warnings in downstream projects, which should likely not be there. We could also drop in the normal assert_equal there, which would support NaT, and NaN, but checks for scalarness, which this currently does not (which also could create problems). Works around the only test with this problem, by using the normal assert_equal there. | |||||
2017-05-07 | BUG: Remove warning filters from comparison assert functions | Sebastian Berg | 2 | -38/+75 | |
These warning filters are not threadsafe, while it is nicer if the comparison functions can be called in a threaded environment since they do no explicite warning checking. Less filters are also cleaner in general, though may also mean that downstream projects see warnings that were previously hidden. | |||||
2017-05-07 | ENH: Add isnat function | Sebastian Berg | 7 | -1/+116 | |
2017-05-06 | Merge pull request #8964 from juliantaylor/empty-read | Julian Taylor | 3 | -1/+22 | |
BUG: don't create array with invalid memory in where | |||||
2017-05-06 | Merge pull request #8939 from eric-wieser/deprecate-mini | Charles Harris | 5 | -78/+130 | |
DEP: Deprecate `np.ma.MaskedArray.mini |