| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
| |
* 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)
|
|
|
|
|
|
| |
* 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
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
|
|