summaryrefslogtreecommitdiff
path: root/numpy/lib/npyio.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* | STY: Slight style changeCharles Harris2021-08-221-1/+1
* | PERF: Optimize loadtxt usecols.Antony Lee2021-08-221-10/+15
|/
* MAINT: In loadtxt, inline read_data.Antony Lee2021-08-171-33/+18
* ENH: Allow `np.fromregex` to accept `os.PathLike` implementationsBas van Beek2021-08-161-1/+5
* 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-061-67/+2
|\ \
| * | Rm numpy.lib.npyio.mafromtxt.Ross Barnowski2021-08-051-29/+1
| * | Rm numpy.lib.npyio.ndfromtxt.Ross Barnowski2021-08-051-29/+1
| * | Rm numpy.lib.npyio.loads.Ross Barnowski2021-08-051-10/+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
|/ /
* | 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
|/