summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
...
| | * | | | | | DOC: Clarify that the `base` parameter in `logspace` can be array_likeBas van Beek2020-08-231-2/+2
| | * | | | | | TST: Add tests for the `np.core.function_base` stubsBas van Beek2020-08-233-0/+36
| | * | | | | | ENH: Add stubs for `np.core.function_base`Bas van Beek2020-08-232-0/+64
| * | | | | | | Merge pull request #17214 from BvB93/genericCharles Harris2020-09-074-54/+113
| |\ \ \ \ \ \ \
| | * | | | | | | TST: Don't run typing tests on lines that are commented outBas van Beek2020-09-012-3/+3
| | * | | | | | | MAINT: Only allow `SupportsIndex` for python >= 3.8Bas van Beek2020-09-012-48/+30
| | * | | | | | | MAINT: Fixed the super-class of `np.character`Bas van Beek2020-09-011-1/+1
| | * | | | | | | ENH: Add an alias for `Union[str, bytes]`; updated two `np.generic` constructorsBas van Beek2020-09-012-23/+27
| | * | | | | | | MAINT: Remove redundant `__r<op>__`Bas van Beek2020-09-011-3/+0
| | * | | | | | | TST: Add tests for the new `generic` constructorsBas van Beek2020-09-011-3/+28
| | * | | | | | | MAINT: Removed the `SupportsInt` protocol from `complexfloating` constructorsBas van Beek2020-09-011-2/+2
| | * | | | | | | MAINT: Make `datetime64` a `generic` subclass (again)Bas van Beek2020-09-012-9/+13
| | * | | | | | | MAINT: Explicitly define `real` and `imag` for a number of `generic` subclassesBas van Beek2020-09-011-10/+20
| | * | | | | | | MAINT: Added missing builtin super-classes to a number of `generic`sBas van Beek2020-09-011-4/+4
| | * | | | | | | MAINT: Added missing types to various `generic` constructorsBas van Beek2020-09-011-21/+53
| * | | | | | | | Merge pull request #17104 from BvB93/sub-modulesCharles Harris2020-09-0718-0/+699
| |\ \ \ \ \ \ \ \
| | * | | | | | | | TST: Remove `compat` and `core` from the testsBas van Beek2020-08-201-2/+0
| | * | | | | | | | DEP: Remove `ctypes_load_library` annotationsBas van Beek2020-08-201-1/+0
| | * | | | | | | | Revert "REV: Removed deprecated `ctypeslib` stubs"Bas van Beek2020-08-201-0/+8
| | * | | | | | | | REV: Removed deprecated `ctypeslib` stubsBas van Beek2020-08-201-8/+0
| | * | | | | | | | ENH: Added placeholder stubs for `distutils` and `f2py`Bas van Beek2020-08-202-0/+9
| | * | | | | | | | ENH: Replace module-level `__getattr__` with explicitly defined objectsBas van Beek2020-08-204-8/+51
| | * | | | | | | | REV: Removed `compat` and `core` stubsBas van Beek2020-08-202-451/+0
| | * | | | | | | | ENH: Replace module-level `__getattr__` with explicitly defined objectsBas van Beek2020-08-1913-24/+1024
| | * | | | | | | | REV: Removed one last builtin moduleBas van Beek2020-08-193-8/+0
| | * | | | | | | | REV: Removed two more (accidently included) builtin modulesBas van Beek2020-08-193-10/+0
| | * | | | | | | | REV: Removed the (accidently included) builtin `sys` moduleBas van Beek2020-08-193-13/+7
| | * | | | | | | | ENH: Add placeholder stubs for all sub-modulesBas van Beek2020-08-1921-7/+132
| | | |_|_|/ / / / | | |/| | | | | |
* | | | | | | | | DEP: Removed `bool_.__index__`Bas van Beek2020-09-071-1/+0
* | | | | | | | | MAINT: Moved all inplace-magic-methods to `np.ndarray`Bas van Beek2020-09-071-12/+13
* | | | | | | | | DEP: Remove `ndarray.tostring()` stubs as it is deprecatedBas van Beek2020-09-071-1/+2
* | | | | | | | | TST: Fixed a testBas van Beek2020-09-072-2/+2
* | | | | | | | | MAINT: Remove two python 2 related if statementsBas van Beek2020-09-071-1/+1
* | | | | | | | | MAINT: Removed the class-level `_ArrayOrScalarCommon.__getattr__` methodBas van Beek2020-09-071-72/+120
|/ / / / / / / /
* | | | | | | | Merge pull request #17235 from hugovk/rm-old-codeCharles Harris2020-09-078-88/+15
|\ \ \ \ \ \ \ \
| * | | | | | | | MAINT: Remove old sys.version_info codeHugo2020-09-035-74/+14
| * | | | | | | | MAINT: Remove old PY_VERSION_HEX codeHugo2020-09-033-14/+1
| | |/ / / / / / | |/| | | | | |
* | | | | | | | Merge pull request #17241 from charris/cleanup-pyarray_frominterfaceCharles Harris2020-09-071-12/+3
|\ \ \ \ \ \ \ \ | |_|_|_|_|/ / / |/| | | | | | |
| * | | | | | | MAINT: ``__array_interface__`` data address cannot be string.Charles Harris2020-09-031-12/+3
| | |_|_|/ / / | |/| | | | |
* | | | | | | Merge pull request #17225 from seberg/fix-broken-up-ragged-arrayCharles Harris2020-09-042-1/+23
|\ \ \ \ \ \ \
| * | | | | | | Update numpy/core/tests/test_array_coercion.pySebastian Berg2020-09-021-0/+1
| * | | | | | | BUG: Fix dimension discovery of within array ragged casesSebastian Berg2020-09-022-1/+22
| | |/ / / / / | |/| | | | |
* | | | | | | Merge pull request #17223 from mattip/setuptools1Charles Harris2020-09-045-22/+12
|\ \ \ \ \ \ \
| * | | | | | | MAINT: EXT_SUFFIX differs between sysconfig and distutils.sysconfigMatti Picus2020-09-041-2/+2
| * | | | | | | MAINT: fix win exec_prefixmattip2020-09-031-1/+1
| * | | | | | | MAINT: use sysconfig not distutils.sysconfig where possiblemattip2020-09-026-24/+14
| |/ / / / / /
* | | | | | | Merge pull request #17193 from eric-wieser/clean-compatSebastian Berg2020-09-037-42/+34
|\ \ \ \ \ \ \
| * | | | | | | MAINT: Remove users of `numpy.compat.bytes`Eric Wieser2020-08-313-3/+3
| * | | | | | | MAINT: Remove users of `numpy.compat.open_latin1`Eric Wieser2020-08-311-32/+27
| * | | | | | | MAINT: Remove users of `numpy.compat.strchar`Eric Wieser2020-08-311-2/+1