summaryrefslogtreecommitdiff
path: root/numpy/lib/_iotools.py
Commit message (Collapse)AuthorAgeFilesLines
* * genfromtxt : Fixed when a dtype involving objects is explicitly given. ↵pierregm2009-02-051-2/+17
| | | | | | Raise a NotImplementedError if the dtype is nested. * _iotools : make sure StringConverter gets properly initiated when a function returning a np.object is used as input parameter.
* * Make sure that StringConverter.update sets the type to object if it can't ↵pierregm2009-02-031-2/+7
| | | | define it.
* * _iotools.StringConverter :pierregm2009-01-261-2/+6
| | | | | | | | - add a _checked attribute to indicate whether the converter has been upgraded or not. - switched the default value for bool to False * io.genfromtxt: - fixed for the case where a whole column is masked: switch to bool or the common dtype (if needed)
* * lib : introduced _iotoolspierregm2009-01-191-0/+469
* lib.io : introduced genfromtxt, ndfromtxt, mafromtxt, recfromtxt, recfromcsv.