summaryrefslogtreecommitdiff
path: root/numpy/core/records.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* ENH: set correct __module__ for objects in numpy's public APIStephan Hoyer2018-11-131-0/+3
* ENH: Improve support for pathlib.Path objects in load functions (#11348)Paul Müller2018-11-011-7/+11
* BUG: Fixes for unicode field names in Python 2 (#11642)Chris Billington2018-08-161-2/+2
* DEP: Issue FutureWarning when malformed records detected.Charles Harris2018-02-081-1/+8
* ENH: Fix repr of np.record objects to match np.void typesEric Wieser2018-01-161-2/+6
* BUG: Fix line wrapping and remove trailing space for recarrayEric Wieser2017-12-081-3/+7
* MAINT: Use new-style classes on 2.7Eric Wieser2017-07-241-1/+1
* BUG: Fix error in fromstring function from numpy.core.records (#9369)Daniel Hrisca2017-07-061-1/+1
* BUG: KeyboardInterrupt is swallowed all over the placeEric Wieser2017-06-031-2/+2
* Merge pull request #6632 from mcmtroffaes/feature/fromfile-ioopen-bugCharles Harris2017-04-141-1/+2
|\
| * BUG: npy_PyFile_Dup2 - fix PyFile_AsFile failing on io style classesMatthias C. M. Troffaes2016-09-081-1/+2
* | MAINT: replace len(x.shape) with x.ndimEric Wieser2017-02-241-2/+2
* | Merge pull request #8486 from eric-wieser/patch-8ahaldane2017-01-171-3/+1
|\ \