summaryrefslogtreecommitdiff
path: root/numpy/core/umath.py
Commit message (Collapse)AuthorAgeFilesLines
* BUG, DOC: restore missing importmattip2020-02-131-1/+4
|
* MAINT: cleanup unused imports; avoid redefinition of importsMike Taves2020-02-061-3/+1
| | | | | | | * Cleanup unused imports (F401) of mostly standard Python modules, or some internal but unlikely referenced modules * Where internal imports are potentially used, mark with noqa * Avoid redefinition of imports (F811)
* MAINT: resolve pyflake F403 'from module import *' usedMike Taves2020-01-231-2/+2
| | | | | | * For external modules, resolve imported members * Most internal relative modules were ignored or marked noqa: F403 * Convert a few internal absolute imports to relative imports
* DEV: remove _arg from public API, add matmul to benchmark ufuncsmattip2019-01-071-2/+2
|
* BUG: The multiarray/ufunc merge broke old wheels.Charles Harris2018-09-041-21/+25
| | | | | | | | | | | The numpy/core/umath.py compatibility module was missing the `_UFUNC_API` attribute that needed to be imported from `_multiarray_umath`. * Add the `_UFUNC_API` attribute * Make some style fixups. See https://github.com/scipy/scipy/issues/9220 for discussion.
* BUG: Re-add _ones_like to numpy.core.umath.Marten van Kerkwijk2018-09-011-2/+1
|
* DOC: add docstring to new python filesmattip2018-08-211-0/+7
|
* MAINT: merge umath, multiarray into _multiarray, add python wrappersmattip2018-08-211-0/+25