summaryrefslogtreecommitdiff
path: root/numpy/core/records.py
Commit message (Expand)AuthorAgeFilesLines
* MAINT: Move set_module to numpy.core to use without C importSebastian Berg2022-11-241-1/+1
* ENH: Add spaces after punctuation in dtype repr/str. (#19686)Antony Lee2021-09-291-4/+4
* Merge pull request #19918 from BvB93/moduleCharles Harris2021-09-211-0/+8
|\
| * MAINT: Override the modules of `np.char` and `np.rec` functionsBas van Beek2021-09-211-0/+8
* | DOC: Typos found by codespellDimitri Papadopoulos2021-09-211-1/+1
|/
* MAINT: revise OSError aliases (IOError, EnvironmentError)Mike Taves2021-09-021-1/+1
* MAINT: refactor "for ... in range(len(" statementsMike Taves2021-09-011-6/+6
* MAINT: removed unused imports listed in LGTMdefault-3032021-05-241-1/+0
* Merge pull request #17586 from BvB93/type_aliasesCharles Harris2021-03-301-1/+1
|\
| * MAINT,DEP: Replace references to `typeDict` with `sctypeDict`Bas van Beek2021-01-161-1/+1
* | Merge pull request #18579 from mwtoews/refactor-dictRalf Gommers2021-03-211-13/+2
|\ \
| * | MAINT: OrderedDict is no longer necessary from Python 3.7Mike Taves2021-03-081-13/+2
* | | MAINT: use super() as described by PEP 3135Mike Taves2021-03-191-3/+3
|/ /
* | MAINT: Add previously missing objects to `np.rec.__all__`Bas van Beek2021-02-011-1/+4
* | DOC: Misc numpydoc format fixesMatthias Bussonnier2021-01-271-6/+6
|/
* MAINT: Replace `contextlib_nullcontext` with `contextlib.nullcontext`Bas van Beek2020-12-051-4/+3
* Fix docstring cross-referencingAlbert Villanova del Moral2020-09-041-5/+5
* ENH: Add support for file like objects to np.core.records.fromfile (#16675)Sidhant Bansal2020-08-131-10/+11
* DOC: Improve `rec.array` function documentation (#15853) (#16260)Anthony Byuraev2020-06-261-1/+80
* MAINT: Chain some exceptions. (#16418)Zuhair Ali-Khan2020-06-041-4/+6
* MAINT: core: Use a raw string for the fromstring docstring.Warren Weckesser2020-05-261-1/+1
* DOC: Improve docstring of ``numpy.core.records`` (#16199)dojafrat2020-05-131-2/+52
* DOC: Improve record module documentation (#15899)dustanlevenstein2020-04-161-16/+82
* MAINT: records: Remove private `format_parser._descr` attributeEric Wieser2020-04-031-15/+13
* MAINT: simplify code that assumes str/unicode and int/long are different type...Eric Wieser2020-03-261-4/+4
* MAINT: refactoring in np.core.records (gh-15195)Daniel Hrisca2020-01-281-19/+18
* MAINT: Clean up, mostly unused imports.Warren Weckesser2020-01-231-1/+0
* Merge pull request #15217 from eric-wieser/deprecate-shape-0Sebastian Berg2020-01-161-6/+29
|\
| * DEP: records: Deprecate treating shape=0 as shape=NoneEric Wieser2020-01-011-6/+29
* | MAINT: Remove implicit inheritance from object class (#15236)Jon Dufresne2020-01-051-1/+1
* | MAINT: Remove unnecessary 'from __future__ import ...' statementsJon Dufresne2020-01-031-2/+0
|/
* BUG: Exceptions tracebacks are droppedEric Wieser2019-12-031-2/+1
* Merge remote-tracking branch 'upstream/master' into fix-if-fieldsEric Wieser2019-08-191-67/+78
|\
| * MAINT: Replace integers in places where booleans are expectedMSeifert042019-07-011-1/+1
| * BUG: Ensure that np.core.records.fromfile closes its file if something goes w...Eric Wieser2019-06-041-29/+29
| * BUG: Fix np.rec.fromarrays on arrays which are already structured (#12887)Daniel Hrisca2019-03-141-4/+2
| * Merge pull request #12604 from danielhrisca/fromfile-bugfixCharles Harris2019-01-191-1/+4
| |\
| | * chage ValueError to TypeError after reviewdanielhrisca2018-12-241-2/+2
| | * BUG: check if dtype or formats arguments are not None when calling numpy.core...danielhrisca2018-12-231-0/+3
| * | ENH: improve performance of numpy.core.records.fromarrays (#12596)Daniel Hrisca2019-01-131-5/+6
| |/
| * Rename OrderedCounter to _OrderedCounterEric Wieser2018-12-181-2/+3
| * use OrderedCounter recipe from Python documentationdanielhrisca2018-12-181-9/+17
| * ENH: improve performance for core/records/find_duplicatedanielhrisca2018-12-171-6/+9
| * MAINT: address several reviewer commentsTyler Reddy2018-12-141-4/+4
| * TST, DOC: enable refguide_checkTyler Reddy2018-12-141-20/+17
* | BUG: Fix crash in recarray if nested structured dtypes contain paddingEric Wieser2019-08-191-2/+2
* | BUG: Make np.record work on structured fields with no fieldsEric Wieser2019-08-191-7/+7
|/
* BUG: Fix `/` that should be `//`.Charles Harris2018-12-061-1/+1
* BUG: fix records.fromfile fails to read data >4 GBcgohlke2018-12-051-2/+2
* MAINT: Use list and dict comprehension when possible (#12445)Roman Yurchak2018-12-011-3/+1