summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* | | | | Merge pull request #9089 from shoyer/array-ufunc-error-messageCharles Harris2017-05-102-7/+8
|\ \ \ \ \ | |/ / / / |/| | / / | | |/ / | |/| |
| * | | MAINT: refine error message for __array_ufunc__ not implementedStephan Hoyer2017-05-102-7/+8
| | |/ | |/|
* | | Merge pull request #9090 from charris/immediate-post-1.13.xCharles Harris2017-05-106-3/+52
|\ \ \ | |/ / |/| |
| * | MAINT: Update master branch for 1.14.0 development.Charles Harris2017-05-106-3/+52
|/ /
* | Merge pull request #9087 from eric-wieser/fix-ufunc-resolutionJulian Taylor2017-05-1010-122/+175
|\ \
| * | MAINT: fix intp formatting warningsJulian Taylor2017-05-101-23/+24
| * | MAINT: Remove avoidable warningsEric Wieser2017-05-103-5/+3
| * | MAINT: use if instead of loopEric Wieser2017-05-101-31/+21
| * | BUG: Fix inconsistent lookup of __array_ufunc__.Eric Wieser2017-05-105-43/+53
| * | MAINT: Fix warnings about int vs intpEric Wieser2017-05-101-9/+9
| * | MAINT: Distinguish "correct" special method lookups from incorrect onesEric Wieser2017-05-106-45/+99
| |/
* | Merge pull request #9080 from charris/release-notes-and-mailmapCharles Harris2017-05-102-121/+142
|\ \
| * | DOC: Update 1.13 release notes.Charles Harris2017-05-091-121/+137
| * | MAINT: Update .mailmap to include new contributers.Charles Harris2017-05-091-0/+5
* | | Merge pull request #9050 from juliantaylor/fortranobj-pathCharles Harris2017-05-102-9/+50
|\ \ \
| * | | BUG: distutils, add compatiblity python parallelizationJulian Taylor2017-05-041-3/+44
| * | | BUG: distutils, place fortranobject files in subfolderJulian Taylor2017-05-041-6/+6
* | | | Merge pull request #9070 from ahaldane/silence_join_byEric Wieser2017-05-102-6/+49
|\ \ \ \ | |_|_|/ |/| | |
| * | | BUG: Preserve field order in join_by, avoids FutureWarningAllan Haldane2017-05-092-6/+49
* | | | Merge pull request #9077 from eric-wieser/object-recursionJulian Taylor2017-05-092-1/+33
|\ \ \ \
| * | | | TST: Add missing tests for bool scalar conversionEric Wieser2017-05-091-0/+22
| * | | | BUG: Don't silence errors in bool(object_array)Eric Wieser2017-05-091-0/+4
| * | | | BUG: Prevent stackoverflow on self-containing arraysEric Wieser2017-05-091-1/+7
| | |_|/ | |/| |
* | | | Merge pull request #9054 from eric-wieser/fix-pep3118ahaldane2017-05-092-127/+172
|\ \ \ \ | |/ / / |/| | |
| * | | BUG: Prevent autogenerated names clashing with given namesEric Wieser2017-05-052-27/+27
| * | | BUG: Fix non-determinism in order of fields created from pep3118 formatsEric Wieser2017-05-052-20/+33
| * | | ENH: Pad with itemsize, not padding fieldsEric Wieser2017-05-052-48/+44
| * | | MAINT: refactor _dtype_from_pep3118 in terms of a streamEric Wieser2017-05-051-43/+79
* | | | Merge pull request #9074 from scop/py36escCharles Harris2017-05-092-5/+5
|\ \ \ \
| * | | | ENH: Python 3.6 invalid escape sequence deprecation fixesVille Skyttä2017-05-092-5/+5
* | | | | Merge pull request #8846 from gfyoung/randint-extreme-rangeCharles Harris2017-05-093-15/+60
|\ \ \ \ \
| * | | | | BUG: Buttress handling of extreme values in randintgfyoung2017-05-093-15/+60
* | | | | | Merge pull request #9026 from eric-wieser/ufunc_docstringsCharles Harris2017-05-096-201/+197
|\ \ \ \ \ \ | |_|/ / / / |/| | | | |
| * | | | | DOC: Correct parameter names for spacing and invertEric Wieser2017-05-081-2/+2
| * | | | | DOC: Simplify the output of help(ufunc)Eric Wieser2017-05-081-37/+21
| * | | | | DOC: Remove explanation of exception due to outEric Wieser2017-05-081-20/+0
| * | | | | DOC: Refer to main ufunc docs for kwargsEric Wieser2017-05-082-83/+102
| * | | | | DOC: Show full argument lists for ufuncsEric Wieser2017-05-083-59/+72
| | |_|/ / | |/| | |
* | | | | Merge pull request #9075 from scop/spellingJaime2017-05-0949-60/+60
|\ \ \ \ \ | |_|/ / / |/| | | |
| * | | | ENH: Spelling fixesVille Skyttä2017-05-0949-60/+60
|/ / / /
* | | | Merge pull request #9072 from njsmith/preserve-multiarray-import-errorJulian Taylor2017-05-091-2/+4
|\ \ \ \ | |/ / / |/| | |
| * | | BUG: if importing multiarray fails, don't discard the error messageNathaniel J. Smith2017-05-081-2/+4
|/ / /
* | | Merge pull request #9063 from shoyer/divmodEric Wieser2017-05-0817-193/+348
|\ \ \
| * | | DOC: fix docstring for np.isinStephan Hoyer2017-05-071-0/+1
| * | | DOC: update ufunc overides NEP with __divmod__Stephan Hoyer2017-05-071-4/+7
| * | | ENH: switch ndarray.__divmod__ to use np.divmodStephan Hoyer2017-05-077-171/+146
| * | | ENH: add divmod support to NDArrayOperatorsMixinStephan Hoyer2017-05-072-40/+60
| * | | ENH: add np.divmod ufuncStephan Hoyer2017-05-079-0/+156
* | | | BUG: Move ctypes ImportError catching to appropriate place (#8898)davidjn2017-05-082-17/+52
* | | | Merge pull request #9058 from charris/update-warning-messageCharles Harris2017-05-072-4/+14
|\ \ \ \