summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_io.py
Commit message (Expand)AuthorAgeFilesLines
* ENH: add ndmin keyword to loadtxt. Closes #1562.Ralf Gommers2011-04-031-0/+17
* ENH: return empty array from loadtxt for an empty file. Closes #1752.Ralf Gommers2011-04-031-2/+7
* TST: add test for ticket #1458.Charles Harris2011-04-021-1/+12
* BUG: ticket #1565, fix conversion of int64 and uint64 types by loadtxt.Christoph Gohlke2011-04-021-0/+16
* BUG: open genfromtxt file as binary; add test for filename useMatthew Brett2011-03-301-1/+20
* ENH: core: Add new GetArrayParamsFromObject API function (fixes #1081)Mark Wiebe2011-02-061-1/+1
* ENH: core: Implement PyArray_CopyInto using the new iteratorMark Wiebe2011-01-161-1/+9
* genfromtxt: Taking more adequate testing values when updating converters: bug...pierregm2010-11-131-0/+9
* Fix bug #1656pierregm2010-11-131-0/+7
* Fixing genfromtxt: names w/ usecols (bug #1636)pierregm2010-11-131-0/+21
* * fixed the behavior of {{{skip_footer}}} in {{{genfromtxt}}} when some inval...pierregm2010-09-131-1/+24
* 3K: lib/tests: fix test_io.RoundtripTest on Python3 + WindowsPauli Virtanen2010-07-171-1/+2
* * add a `replace_space` option to NameValidatorpierregm2010-05-161-0/+24
* BUG/3K: lib: make savetxt work with filenamesPauli Virtanen2010-05-131-0/+11
* BUG: loadtxt should handle universal newlines.Stefan van der Walt2010-05-021-0/+10
* 3K: lib: fix bytes vs str issues in testsPauli Virtanen2010-02-211-7/+8
* DEP: Fix deprecation warnings in Python 3.1. The warnings come from the unittestCharles Harris2010-02-201-3/+3
* 3K: lib: more str vs bytes issues in the lib/io loadtxt, savetxt and genfromtxtPauli Virtanen2010-02-201-34/+37
* 3K: lib: fix some bytes vs. str issues in _iotools.py and io.py -- mainly gen...Pauli Virtanen2010-02-201-12/+14
* 3K: lib: use BytesIO in test_ioPauli Virtanen2010-02-201-109/+115
* * _iotools.LineSplitter : prevent the first and/or last empty tab-separated c...pierregm2009-12-081-46/+57
* TST: use assert_warns to check for warnings (and to avoid cluttering non-verb...David Cournapeau2009-11-231-4/+17
* * io.genfromtxtpierregm2009-10-161-13/+17
* * io.genfromtxtpierregm2009-10-161-0/+16
* * _iotools.StringConverterpierregm2009-10-141-2/+38
* * io.genfromtxtpierregm2009-10-121-2/+14
* * _iotools.StringConverterpierregm2009-10-121-13/+49
* * ma.masked_equal : force the `fill_value` of the output to `value` (ticket #...pierregm2009-10-091-10/+71
* * _iotools.StringConverterpierregm2009-10-061-0/+25
* * Add warnings to genfromtxt describing inconsistencies in the number of colu...pierregm2009-10-051-0/+38
* Add tests for dictionary interface to NpzFile.Stefan van der Walt2009-07-041-0/+26
* lib._iotools : pierregm2009-05-281-0/+29
* loadtxt: allow shaped dtypes.Stefan van der Walt2009-05-271-0/+9
* Fixed #852: avoid filename clashes in savez, by using a secure temporary file...Pauli Virtanen2009-03-301-0/+27
* Fix import issue.David Cournapeau2009-03-091-1/+1
* Remove dead code.David Cournapeau2009-03-091-1/+0
* Do not hardcode string for savetxt testing, as the exact representation depen...David Cournapeau2009-03-091-5/+6
* BUG: Rewrite test_gzip_loadtxt to avoid NamedTemporaryFile which is unusable...David Cournapeau2009-03-091-9/+30
* Correctly handle gzip filenames in loadtxt.Stefan van der Walt2009-03-021-0/+8
* Add test for Gzip loader.Stefan van der Walt2009-02-221-0/+14
* Whitespace cleanup.Stefan van der Walt2009-02-221-4/+3
* Fix tests using strptime to be Python 2.4 compatible.Stefan van der Walt2009-02-191-6/+13
* Tag known failure on win32.David Cournapeau2009-02-191-0/+2
* * genfromtxt : fixed case when using explicit converters and explicit dtype.pierregm2009-02-141-2/+11
* Removed an unneccessary return statement in a unit test.Travis Oliphant2009-02-061-1/+0
* * genfromtxt : Fixed when a dtype involving objects is explicitly given. Rai...pierregm2009-02-051-0/+29
* * Make sure that StringConverter.update sets the type to object if it can't d...pierregm2009-02-031-0/+11
* * _iotools.StringConverter :pierregm2009-01-261-0/+17
* * genfromtxt : if names is True, accept a line starting with a comment charac...pierregm2009-01-221-1/+25
* * lib : introduced _iotoolspierregm2009-01-191-1/+357