summaryrefslogtreecommitdiff
path: root/numpy/lib/npyio.py
Commit message (Expand)AuthorAgeFilesLines
* MAINT: don't use open(.., 'U') in Python 3.x, is deprecated.Ralf Gommers2013-12-231-2/+7
* MAINT: io: handle a bad fmt argument in savetxt by raising a ValueError.Warren Weckesser2013-10-201-0/+2
* STY: pepe8 for npyio continued 2 (typo)Yaron de Leeuw2013-10-111-1/+1
* STY: pep8 for npyio continuedYaron de Leeuw2013-10-061-7/+4
* STY: pep8 for npyioYaron de Leeuw2013-09-291-60/+57
* fix two typos in npyio.pyValentin Haenel2013-09-261-2/+2
* DOC STY: make npyio docstrings less than 80 charsYaron de Leeuw2013-09-211-6/+6
* small typoYaron de Leeuw2013-09-151-1/+1
* Fixes in the npyio documentationYaron de Leeuw2013-09-151-11/+12
* ENH: Make savetxt work with file like objects.Daniel2013-08-151-1/+1
* 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