summaryrefslogtreecommitdiff
path: root/numpy/core/src/multiarray/textreading
Commit message (Expand)AuthorAgeFilesLines
* BUG: lib: Tiny fix for the loadtxt tokenizer when PyMem_Malloc() fails.warren2023-04-141-0/+2
* BUG: fix code inside assertmattip2023-02-211-1/+1
* ENH: Improve loadtxt error with dtype and non-matchinig column number (#22996)Sebastian Berg2023-01-111-1/+10
* BUG: np.loadtxt cannot load text file with quoted fields separated by whitesp...dmbelov2023-01-011-1/+2
* BUG: Ensure correct behavior for rows ending in delimiter in loadtxt (#22836)Sebastian Berg2022-12-192-3/+6
* Merge pull request #22663 from rgommers/build-with-mesonRalf Gommers2022-11-274-6/+10
|\
| * MAINT: avoid gcc warning that signed and unsigned types are being comparedStefan van der Walt2022-11-251-1/+1
| * BLD: fix missing `Python.h` includesRalf Gommers2022-11-253-5/+9
* | MAINT: replace `NPY_INLINE` with `inline`Ralf Gommers2022-11-252-3/+3
|/
* Rename symbols in textreading/ that may clash when statically linked.Peter Hawkins2022-11-228-52/+52
* Cleanup: Fix designator order not matching declaration orderjuztamau52022-11-071-3/+3
* MAINT: Fix typos found by codespellDimitri Papadopoulos2022-10-073-3/+3
* ENH,MAINT: Add overflow handling for negative integers scalar multiplication ...Meekail Zain2022-07-171-1/+1
* BUG: lib: A loadtxt error message had two values reversed.warren2022-06-181-5/+5
* MAINT: Add a check of the return value of PyMem_Calloc().warren2022-06-151-0/+4
* BUG: Decref `loadtxt` converters when doneSebastian Berg2022-06-141-2/+12
* BUG: Fix line skipping invalid read/use of invalid valueSebastian Berg2022-06-081-2/+3
* DOC: Update the loadtxt int-via-float deprecation warning messageSebastian Berg2022-06-071-3/+8
* DEP: Deprecate (rather than remove) the int-via-float parsing in loadtxtSebastian Berg2022-06-033-4/+48
* Use `inline` keyword instead of NPY_INLINE for C++ sourcesserge-sans-paille2022-04-021-3/+3
* MAINT: Fix incorrect signature in readtext header file (#21109)Sebastian Berg2022-02-221-1/+2
* BUG: Replace ``ssize_t`` with ``size_t`` in tokenize.cpp (#21074)Bas van Beek2022-02-161-2/+2
* BUG: (loadtxt) Ignore last empty field when `delimiter=None`Sebastian Berg2022-02-141-5/+14
* MAINT: Use C++ for tokenizer unicode-kind templatingSebastian Berg2022-02-115-41/+60
* TST: Some tests for control character collisions.Ross Barnowski2022-01-281-2/+2
* TST: Skip unparsable field error tests on PyPySebastian Berg2022-01-191-0/+5
* ENH: Give a clear error when control characters match/are newlinesSebastian Berg2022-01-191-0/+84
* TST,BUG: Fortify byteswapping tests and make a small fixSebastian Berg2022-01-152-14/+18
* DOC: Remove outdated loadtxt TODOs from codeSebastian Berg2022-01-141-6/+3
* MAINT: Only allocate converters if necessarySebastian Berg2022-01-141-9/+10
* MAINT: Very minor style cleanups (mostly)Sebastian Berg2022-01-143-18/+21
* MAINT: Use skiplines rather than skiprows internally throughoutSebastian Berg2022-01-141-5/+5
* MAINT: Remove unused/unnecessary allow-embedded-newlines optionSebastian Berg2022-01-143-25/+1
* TST: Improve test coverage, replace impossible error with assertSebastian Berg2022-01-141-8/+3
* TST,MAINT: New tests, byteswap cleanups and fixed assertSebastian Berg2022-01-143-20/+37
* TST,BUG: Additional bad-file-like test, add missing error path freeSebastian Berg2022-01-142-4/+3
* MAINT,TST,BUG: Simplify streamer init, fix issues, and add testsSebastian Berg2022-01-143-54/+34
* MAINT: Small cleanup, use FINLINE for int parsersSebastian Berg2022-01-142-5/+2
* ENH: Give warning for empty-lines not counting towards max-rowsSebastian Berg2022-01-143-12/+38
* BUG: Ensure current num fields holds enough space for ultra-wide columnsSebastian Berg2022-01-141-1/+1
* BUG: Make sure num-fields is intp/ssize_t compatibleSebastian Berg2022-01-142-5/+13
* MAINT: Move usecol handling to C and support more than integer colsSebastian Berg2022-01-143-40/+57
* BUG: Fix growing when NPY_RELAXED_STRIDES_DEBUG=1 is usedSebastian Berg2022-01-141-0/+6
* BUG: Fix some issues found by a valgrind runSebastian Berg2022-01-143-2/+3
* BUG,TST: Add test for huge-float buffer path and ensure error returnSebastian Berg2022-01-141-0/+4
* BUG: Fix complex parser and add tests for whitespace and failure pathsSebastian Berg2022-01-141-19/+33
* MAINT: Add sanity check to ensure usecols is correct.Sebastian Berg2022-01-141-0/+19
* MAINT: Fixup include guards and use NPY_NO_EXPORT (or static) throughoutSebastian Berg2022-01-1416-69/+68
* MAINT: Replace last uses of raw malloc with PyMem_MALLOCSebastian Berg2022-01-141-10/+10
* BUG: Add missing quote copySebastian Berg2022-01-141-0/+5