summaryrefslogtreecommitdiff
path: root/numpy/lib/npyio.py
Commit message (Expand)AuthorAgeFilesLines
* BUG: Make np.load transfer file ownership to the returned NpzFile.Charles Harris2013-06-221-4/+9
* adjust the optimal IO buffer size for npz filesBartosz Telenczuk2013-06-121-2/+0
* BUG: fix loading large npz files (fixes #2922)Bartosz Telenczuk2013-06-121-5/+7
* MAINT: Apply 2to3 idioms fixer.Charles Harris2013-05-021-1/+1
* MAINT: Remove unneeded version checks.Charles Harris2013-04-241-2/+1
* MAINT: Use from future_builtins zip and map.Charles Harris2013-04-211-3/+2
* 2to3: Apply unicode fixer.Charles Harris2013-04-211-5/+10
* 2to3: Apply next fixer.Charles Harris2013-04-151-4/+4
* Merge pull request #3244 from charris/2to3-apply-zip-fixerCharles Harris2013-04-141-6/+6
|\
| * 2to3: Apply zip fixer.Charles Harris2013-04-131-6/+6
* | 2to3: Apply basestring fixer.Charles Harris2013-04-131-1/+1
|/
* 2to3: Apply itertools fixer.Charles Harris2013-04-121-1/+3
* 2to3: Apply `map` fixer.Charles Harris2013-04-101-10/+11
* 2to3: apply `dict` fixer.Charles Harris2013-04-061-2/+2
* 2to3: Apply `print` fixer.Charles Harris2013-04-061-1/+1
* Merge pull request #3191 from charris/2to3-apply-imports-fixerCharles Harris2013-04-061-8/+10
|\
| * 2to3: Apply `imports` fixer.Charles Harris2013-04-021-8/+10
* | Merge pull request #460 from endolith/regex_formattingCharles Harris2013-04-031-1/+1
|\ \ | |/ |/|
| * DOC: regex-assisted fixes of definition list formattingendolith2013-03-191-1/+1
* | 2to3: Use absolute imports.Charles Harris2013-03-281-5/+5
* | 2to3: Replace xrange by range and use list(range(...)) where neededCharles Harris2013-03-271-3/+3
|/
* 2to3: Put `from __future__ import division in every python file.Charles Harris2013-03-011-0/+2
* BUG: make genfromtxt work with comments=None. Closes Github issue 329.martingoodson2012-07-101-1/+2
* DOC: merge wiki edits. Add percentile to statistics routines (ML suggestion).Ralf Gommers2012-07-071-2/+1
* BF: removed too much -- own_fid should be False while working with .npzYaroslav Halchenko2012-07-051-0/+1
* ENH: Since file handle could not be reopened (during load()) -- no need for "...Yaroslav Halchenko2012-07-051-17/+3
* BF: PY3 and PY2 < 2.7 compatibility fixes for prev 2 commitsYaroslav Halchenko2012-07-021-6/+10
* BUG: do not "own" the FID for GzipFile and file if provided to load already o...Yaroslav Halchenko2012-07-021-4/+12
* DOC: Change versionadded from 2.0.0 to 1.7.0 where needed.Charles Harris2012-03-041-2/+2
* DOC: merge wiki doc edits.Ralf Gommers2012-03-031-30/+39
* ENH: lib: break reference cycle in NpzFile (#2048)Pauli Virtanen2012-02-161-1/+4
* BUG: savetxt now handles complex arrays. Closes #1573.Paul Anton Letnes2011-12-281-10/+32
* ENH: add context manager for NpzFile class.David Cournapeau2011-10-101-0/+13
* DOC: mention that NpzFile instances must be closed.David Cournapeau2011-10-101-1/+13
* BUG: loadtxt: There was some extra nesting for subarray dtypes (Ticket #1936)Mark Wiebe2011-08-201-5/+10
* ENH: Add provision for headers and footers to savetxt, fixes ticket 1236.Paul Anton Letnes2011-08-151-4/+22
* BUG: fix failing npyio test under py3k. Thanks to Derek Homeier. Closes #1793.Ralf Gommers2011-08-101-1/+2
* ENH: let genfromtxt return empty array for empty input file instead of an error.Paul Anton Letnes2011-07-311-2/+4
* STY: Remove trailing whitespaceMark Wiebe2011-07-261-2/+2
* use np.atleast_Nd() to boost dimensions to ndminDerek Homeier2011-05-071-5/+8
* changed ndmin option in loadtxt to return shape (1, X.size) for single-row in...Derek Homeier2011-05-071-1/+4
* STY: Fix up some remaining old-style exceptions.Charles Harris2011-04-051-3/+3
* STY: Update exception styles, trickier ones.Charles Harris2011-04-051-2/+2
* STY: Update exception style, easy ones.Charles Harris2011-04-051-1/+1
* BUG: Workaround for the fact the Python 2.4 doesn't accept 'Ub' as a fileCharles Harris2011-04-051-1/+1
* moved import statement in npyio.py for ease of readingPaul Anton Letnes2011-04-041-1/+1
* BUG: ticket #1071, fix loadtxt to handle tab delimited data with missingDerek Homeir2011-04-041-3/+4
* ENH: Let genfromtxt accept generators as text sources. Add testCharles Harris2011-04-031-19/+27
* ENH: ticket #1616, let loadtxt accept generators in additions toCharles Harris2011-04-031-37/+34
* ENH: add ndmin keyword to loadtxt. Closes #1562.Ralf Gommers2011-04-031-2/+19