summaryrefslogtreecommitdiff
path: root/numpy/lib
Commit message (Expand)AuthorAgeFilesLines
* DOC: fix docstrings.pr/19857Charles Harris2021-10-082-325/+514
* MAINT, ENH [#10736] Add interpolation methods to quantileabel2021-10-063-194/+788
* TST: Make nanfunc test ignore overflow instead of xfailing testSebastian Berg2021-09-071-3/+1
* MAINT: Let `_remove_nan_1d` attempt to identify nan-containing object arraysBas van Beek2021-09-051-2/+4
* MAINT: Copy the `_methods._std` code-path for handling `nanstd` object-arraysBas van Beek2021-09-041-6/+3
* TST: Add more tests for `nanmedian`, `nanquantile` and `nanpercentile`Bas van Beek2021-09-031-0/+17
* TST: Expand the old `TestNanFunctions_IntTypes` test with non-integer number ...Bas van Beek2021-09-031-71/+52
* BUG: Fixed an issue wherein certain `nan<x>` functions could fail for object ...Bas van Beek2021-09-031-3/+20
* Merge pull request #19815 from mwtoews/maint-ioerrorCharles Harris2021-09-024-11/+12
|\
| * MAINT: revise OSError aliases (IOError, EnvironmentError)Mike Taves2021-09-024-11/+12
* | MAINT: Make the `_SupportsGetItem` protocol positional-onlyBas van Beek2021-09-021-1/+1
* | ENH: Use custom file-like protocols instead of `typing.IO`Bas van Beek2021-09-021-17/+32
|/
* Merge pull request #19781 from mwtoews/foreach-itemMatti Picus2021-09-015-33/+29
|\
| * MAINT: refactor "for ... in range(len(" statementsMike Taves2021-09-015-33/+29
* | STY: Use the PEP 457 positional-only syntax in the stub filesBas van Beek2021-08-314-13/+18
* | MAINT: Drop .pyi code-paths specific to Python 3.7Bas van Beek2021-08-309-38/+12
|/
* Merge pull request #19725 from anntzer/loadtxt-fh-closingMatti Picus2021-08-261-14/+12
|\
| * MAINT: Use a contextmanager to ensure loadtxt closes the input file.Antony Lee2021-08-221-14/+12
* | MAINT: Avoid use of confusing compat aliases.Antony Lee2021-08-241-2/+2
* | STY: Slight style changeCharles Harris2021-08-221-1/+1
* | PERF: Optimize loadtxt usecols.Antony Lee2021-08-221-10/+15
|/
* Merge pull request #19693 from anntzer/loadtxtinlinereaddataCharles Harris2021-08-221-33/+18
|\
| * MAINT: In loadtxt, inline read_data.Antony Lee2021-08-171-33/+18
* | DOC: Fix typo in `unwrap` docstring.Ghiles Meddour2021-08-171-1/+1
|/
* Merge pull request #19627 from ankitdwivedi23/ankitd/vectorize-ignore-whitespaceCharles Harris2021-08-162-0/+17
|\
| * replace whitespaces in the signature argumentAnkit Dwivedi2021-08-121-4/+5
| * dummy change to kick off another buildAnkit Dwivedi2021-08-081-1/+1
| * fix lint errorsAnkit Dwivedi2021-08-072-2/+4
| * ignore whitespaces while parsing gufunc signaturesAnkit Dwivedi2021-08-071-3/+3
| * add tests to check if whitespaces are ignored in gufunc signaturesAnkit Dwivedi2021-08-071-0/+14
* | Merge pull request #19680 from BvB93/fromregexCharles Harris2021-08-163-5/+11
|\ \
| * | ENH: Allow `np.fromregex` to accept `os.PathLike` implementationsBas van Beek2021-08-163-5/+11
* | | ENH: Add annotations for `np.lib.stride_tricks`Bas van Beek2021-08-161-9/+75
|/ /
* | ENH: Add annotations for `np.lib.npyio`Bas van Beek2021-08-131-81/+232
* | Merge pull request #19609 from anntzer/loadtxtstaticdecoderCharles Harris2021-08-111-26/+38
|\ \ | |/ |/|
| * Move loadtxt bytes/str detection much earlier.Antony Lee2021-08-061-14/+21
| * loadtxt: Preconstruct a (lineno, words) iterator to pass to read_data.Antony Lee2021-08-061-21/+20
| * PERF: In loadtxt, decide once and for all whether decoding is needed.Antony Lee2021-08-061-6/+12
* | Merge pull request #19615 from rossbar/rm-deprecated-npyio-fnsCharles Harris2021-08-064-96/+2
|\ \
| * | Rm numpy.lib.npyio.mafromtxt.Ross Barnowski2021-08-053-43/+1
| * | Rm numpy.lib.npyio.ndfromtxt.Ross Barnowski2021-08-053-41/+1
| * | Rm numpy.lib.npyio.loads.Ross Barnowski2021-08-053-13/+1
* | | Merge pull request #19620 from anntzer/loadtxtconvstrCharles Harris2021-08-061-5/+5
|\ \ \
| * | | PERF: Simplify some of loadtxt's standard converters.Antony Lee2021-08-061-5/+5
| | |/ | |/|
* | | MAINT: Skip a type check in loadtxt when using user converters.Antony Lee2021-08-061-6/+4
|/ /
* | Merge pull request #19612 from BvB93/testCharles Harris2021-08-061-1/+5
|\ \
| * | TST: Skip `test_lookfor` in 3.10rc1Bas van Beek2021-08-061-1/+5
* | | PERF: Special-case single-converter in loadtxt.Antony Lee2021-08-061-42/+50
* | | MAINT: In loadtxt, refactor detection of the number of columns. (#19616)Antony Lee2021-08-051-15/+12
| |/ |/|
* | PERF: Speed-up common case of loadtxt()ing non-hex floats. (#19598)Antony Lee2021-08-052-4/+31