summaryrefslogtreecommitdiff
path: root/numpy/core/overrides.py
Commit message (Expand)AuthorAgeFilesLines
* MAINT: remove `NUMPY_EXPERIMENTAL_ARRAY_FUNCTION` env varRalf Gommers2023-03-121-13/+1
* DOC: Adept internal docs a bit based on reviewSebastian Berg2023-01-171-2/+4
* ENH: Improve array function overhead by using vectorcallSebastian Berg2023-01-171-57/+37
* Merge pull request #22619 from seberg/move-set_moduleMatti Picus2022-11-291-19/+2
|\
| * MAINT: Move _inspect and _pep440 from compat to _utilsSebastian Berg2022-11-251-1/+1
| * MAINT: Move set_module to numpy.core to use without C importSebastian Berg2022-11-241-18/+1
* | API: Add numpy.testing.overrides to aid testing of custom array containersNathan Goldbaum2022-11-161-0/+4
|/
* Removed two unused importsCallum O'Riley2022-07-141-1/+0
* ENH: Ensure dispatcher TypeErrors report original nameSebastian Berg2022-06-101-1/+22
* DOC: add note about array_like being optionalmelissawm2022-02-081-1/+1
* MAINT: LGTM.com recommendation: Unused importDimitri Papadopoulos2021-10-071-1/+0
* Update numpy/core/overrides.pySebastian Berg2021-08-251-2/+2
* remove import time compileIrit Katriel2021-08-251-30/+8
* NEP: Accept NEP 35 as finalSebastian Berg2021-06-071-5/+1
* ENH: implement NEP-35's `like=` argument (gh-16935)Peter Andreas Entschev2020-08-281-0/+21
* DOC: Fix RST/numpydoc standard.Matthias Bussonnier2020-07-101-2/+2
* MAINT: import time: avoid repeated textwrap function dispatch instantiationMark Harfouche2019-07-251-7/+13
* MAINT: Fixes tests with __array_function__ disabledStephan Hoyer2019-05-261-2/+2
* Tests for NUMPY_EXPERIMENTAL_ARRAY_FUNCTION=0Stephan Hoyer2019-05-251-9/+2
* MAINT: revert __skip_array_function__ from NEP-18Stephan Hoyer2019-05-251-1/+22
* Merge branch 'master' into implement-numpy-implementationStephan Hoyer2019-05-131-2/+22
|\
| * ENH: invent a better fake filename than '<string'>Stephan Hoyer2019-05-111-1/+3
| * ENH: use exec() instead array_function_dispatch to improve tracebacksStephan Hoyer2019-05-111-2/+20
* | Rename to __skip_array_function__Stephan Hoyer2019-05-101-1/+1
* | ENH: implement __numpy_implementation__ attribute for NEP-18Stephan Hoyer2019-04-221-0/+2
|/
* DEV: cleanup imports and some assignments (from LGTM)mattip2019-03-171-1/+0
* ENH: __array_function__ updates for NumPy 1.17.0Stephan Hoyer2019-01-221-18/+0
* ENH: port __array_function__ overrides to CStephan Hoyer2018-12-191-94/+10
* ENH: refactor __array_function__ pure Python implementationStephan Hoyer2018-12-191-39/+69
* Merge pull request #12328 from mhvk/ndarray_array_function_allow_subclassesStephan Hoyer2018-12-021-11/+5
|\
| * MAINT: Allow subclasses in ndarray.__array_function__.Marten van Kerkwijk2018-12-021-11/+5
* | DOC: add docs_from_dispatcher to docstringStephan Hoyer2018-12-011-2/+6
* | MAINT: remove wrapper functions from numpy.core.multiarrayStephan Hoyer2018-12-011-3/+24
|/
* ENH: set correct __module__ for objects in numpy's public APIStephan Hoyer2018-11-131-3/+3
* DOC: add docstring for override_moduleStephan Hoyer2018-11-111-1/+10
* DOC: add a full docstring for array_function_dispatchStephan Hoyer2018-11-111-1/+26
* MAINT: more fixes for disabling overridesStephan Hoyer2018-11-101-12/+22
* MAINT: fix disabling __array_function__Stephan Hoyer2018-11-101-1/+1
* MAINT: disable __array_function__ dispatch unless environment variable setStephan Hoyer2018-11-101-11/+16
* MAINT: Simple speed-ups for getting overloaded typesMarten van Kerkwijk2018-11-031-11/+21
* Merge branch 'master' into fix-overloaded-reprStephan Hoyer2018-10-261-6/+10
|\
| * MAINT: improved error message for no __array_function__ implementationsStephan Hoyer2018-10-231-3/+8
| * MAINT: Fix typo in commentwtli@Dirac2018-10-201-2/+2
| * WIP: __array_ufunc__ for multiarray functionsStephan Hoyer2018-10-141-1/+1
* | MAINT: add __wrapped__ for Python 2 supportStephan Hoyer2018-10-181-0/+5
|/
* ENH: Validate dispatcher functions in array_function_dispatch (#12099)Stephan Hoyer2018-10-081-1/+36
* CLN: rename array_function internal argumentsStephan Hoyer2018-09-281-38/+28
* CLN: cleanup and better document core/overrides.pyStephan Hoyer2018-09-261-26/+69
* Fix precedence of ndarray subclasses and misc cleanupStephan Hoyer2018-09-241-29/+37
* Add comment on subclasses orderingStephan Hoyer2018-09-231-0/+3