summaryrefslogtreecommitdiff
path: root/numpy/lib/npyio.py
Commit message (Expand)AuthorAgeFilesLines
* BUG: properly handle tuple keys in NpZFile.__getitem__ (#23757)Nathan Goldbaum2023-05-121-1/+1
* EHN: add __contains__() to np.lib.npyio.NpzFilef380cedric2023-04-251-0/+3
* ENH: ``__repr__`` for NpzFile object (#23357)Ganesh Kathiresan2023-04-061-0/+16
* MAINT: Fix reference roles of astyuki2023-03-251-5/+5
* MAINT, DOC: string_ → bytes_ and unicode_ → str_Dimitri Papadopoulos2023-02-101-1/+1
* API: Raise EOFError when trying to load past the end of a `.npy` file (#23105)Noé Rubinstein2023-01-271-0/+5
* ENH: Improve array function overhead by using vectorcallSebastian Berg2023-01-171-28/+5
* BUG: np.loadtxt cannot load text file with quoted fields separated by whitesp...dmbelov2023-01-011-0/+8
* Merge pull request #22393 from seberg/npy_headerMatti Picus2022-10-071-6/+26
|\
| * MAINT: Ensure graceful handling of large header sizesSebastian Berg2022-10-061-6/+26
* | DOC: Use versionchanged and add in note about newline chars.Ross Barnowski2022-10-041-3/+7
* | DOC: Update delimiter param description.Ross Barnowski2022-10-031-1/+2
|/
* DOC: Improve `converters` parameter description for loadtxt (#22254)Ross Barnowski2022-09-281-6/+4
* DOC: Add versionchanged for converter callable behavior.Ross Barnowski2022-07-191-0/+5
* DOC: Clarify loadtxt input cols requirement (#21861)Pranab Das2022-07-021-2/+14
* DOC: mention changes to `max_rows` behaviour in `np.loadtxt` (#21854)Pranab Das2022-06-271-2/+9
* Remove deprecated iteratesBrigitta Sipocz2022-05-171-20/+0
* Add space after argument nameOscar Gustafsson2022-04-031-4/+4
* Merge pull request #20580 from seberg/add-npreadtextMatti Picus2022-02-081-325/+427
|\
| * Add two new examples of converters to docstring examplesRoss Barnowski2022-02-071-0/+19
| * Handle delimiter as bytes.Ross Barnowski2022-01-281-1/+3
| * Add test for empty string as control characters.Ross Barnowski2022-01-281-0/+5
| * TST: Some tests for control character collisions.Ross Barnowski2022-01-281-6/+7
| * Add quotechar to examples.Ross Barnowski2022-01-181-1/+21
| * Update and add converters examples.Ross Barnowski2022-01-181-1/+33
| * BUG: Fix loadtxt no data warning stacklevelSebastian Berg2022-01-141-1/+1
| * DOC: Remove outdated loadtxt TODOs from codeSebastian Berg2022-01-141-3/+5
| * MAINT: Use skiplines rather than skiprows internally throughoutSebastian Berg2022-01-141-6/+6
| * MAINT: Move usecol handling to C and support more than integer colsSebastian Berg2022-01-141-17/+4
| * Add warning on empty file + tests.Ross Barnowski2022-01-141-6/+7
| * Add UserWarning when reading no data.Ross Barnowski2022-01-141-0/+7
| * Add tests for quote+multichar comments.Ross Barnowski2022-01-141-2/+2
| * Rename quotechar param and update docstring.Ross Barnowski2022-01-141-6/+13
| * ENH: Reject empty string as control characterSebastian Berg2022-01-141-25/+31
| * MAINT: Address Tylers review commentsSebastian Berg2022-01-141-3/+0
| * STY: Fix some style issues (mainly long lines)Sebastian Berg2022-01-141-12/+14
| * ENH: Allow a single converter to be used for all columnsSebastian Berg2022-01-141-12/+14
| * ENH: Move npreadtext into NumPy for faster text readingSebastian Berg2022-01-141-311/+323
* | DOC: lib/io.py was renamed to lib/npyio.pyMatthias Bussonnier2022-01-281-1/+1
* | MAINT, DOC: fix new typos detected by codespellDimitri Papadopoulos2022-01-121-1/+1
|/
* ENH: add ndmin to `genfromtxt` behaving the same as `loadtxt` (#20500)Ivan Gonzalez2021-12-161-19/+48
* BUG: Fix types of errors raised by genfromtxt (#20389)André Elimelek de Weber2021-12-031-11/+10
* DOC: updated file object docstringArushi Sharma2021-10-261-1/+1
* DOC: updated docstring for binary file objectArushi Sharma2021-10-211-1/+2
* MAINT: lib: Check that the dtype given to fromregex is structured.warren2021-09-221-8/+8
* DOC: Typos found by codespellDimitri Papadopoulos2021-09-211-1/+1
* MAINT: revise OSError aliases (IOError, EnvironmentError)Mike Taves2021-09-021-4/+6
* 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