| Commit message (Expand) | Author | Age | Files | Lines |
* | 2to3: Apply itertools fixer. | Charles Harris | 2013-04-12 | 1 | -1/+3 |
* | 2to3: Apply `map` fixer. | Charles Harris | 2013-04-10 | 1 | -10/+11 |
* | 2to3: apply `dict` fixer. | Charles Harris | 2013-04-06 | 1 | -2/+2 |
* | 2to3: Apply `print` fixer. | Charles Harris | 2013-04-06 | 1 | -1/+1 |
* | Merge pull request #3191 from charris/2to3-apply-imports-fixer | Charles Harris | 2013-04-06 | 1 | -8/+10 |
|\ |
|
| * | 2to3: Apply `imports` fixer. | Charles Harris | 2013-04-02 | 1 | -8/+10 |
* | | Merge pull request #460 from endolith/regex_formatting | Charles Harris | 2013-04-03 | 1 | -1/+1 |
|\ \
| |/
|/| |
|
| * | DOC: regex-assisted fixes of definition list formatting | endolith | 2013-03-19 | 1 | -1/+1 |
* | | 2to3: Use absolute imports. | Charles Harris | 2013-03-28 | 1 | -5/+5 |
* | | 2to3: Replace xrange by range and use list(range(...)) where needed | Charles Harris | 2013-03-27 | 1 | -3/+3 |
|/ |
|
* | 2to3: Put `from __future__ import division in every python file. | Charles Harris | 2013-03-01 | 1 | -0/+2 |
* | BUG: make genfromtxt work with comments=None. Closes Github issue 329. | martingoodson | 2012-07-10 | 1 | -1/+2 |
* | DOC: merge wiki edits. Add percentile to statistics routines (ML suggestion). | Ralf Gommers | 2012-07-07 | 1 | -2/+1 |
* | BF: removed too much -- own_fid should be False while working with .npz | Yaroslav Halchenko | 2012-07-05 | 1 | -0/+1 |
* | ENH: Since file handle could not be reopened (during load()) -- no need for "... | Yaroslav Halchenko | 2012-07-05 | 1 | -17/+3 |
* | BF: PY3 and PY2 < 2.7 compatibility fixes for prev 2 commits | Yaroslav Halchenko | 2012-07-02 | 1 | -6/+10 |
* | BUG: do not "own" the FID for GzipFile and file if provided to load already o... | Yaroslav Halchenko | 2012-07-02 | 1 | -4/+12 |
* | DOC: Change versionadded from 2.0.0 to 1.7.0 where needed. | Charles Harris | 2012-03-04 | 1 | -2/+2 |
* | DOC: merge wiki doc edits. | Ralf Gommers | 2012-03-03 | 1 | -30/+39 |
* | ENH: lib: break reference cycle in NpzFile (#2048) | Pauli Virtanen | 2012-02-16 | 1 | -1/+4 |
* | BUG: savetxt now handles complex arrays. Closes #1573. | Paul Anton Letnes | 2011-12-28 | 1 | -10/+32 |
* | ENH: add context manager for NpzFile class. | David Cournapeau | 2011-10-10 | 1 | -0/+13 |
* | DOC: mention that NpzFile instances must be closed. | David Cournapeau | 2011-10-10 | 1 | -1/+13 |
* | BUG: loadtxt: There was some extra nesting for subarray dtypes (Ticket #1936) | Mark Wiebe | 2011-08-20 | 1 | -5/+10 |
* | ENH: Add provision for headers and footers to savetxt, fixes ticket 1236. | Paul Anton Letnes | 2011-08-15 | 1 | -4/+22 |
* | BUG: fix failing npyio test under py3k. Thanks to Derek Homeier. Closes #1793. | Ralf Gommers | 2011-08-10 | 1 | -1/+2 |
* | ENH: let genfromtxt return empty array for empty input file instead of an error. | Paul Anton Letnes | 2011-07-31 | 1 | -2/+4 |
* | STY: Remove trailing whitespace | Mark Wiebe | 2011-07-26 | 1 | -2/+2 |
* | use np.atleast_Nd() to boost dimensions to ndmin | Derek Homeier | 2011-05-07 | 1 | -5/+8 |
* | changed ndmin option in loadtxt to return shape (1, X.size) for single-row in... | Derek Homeier | 2011-05-07 | 1 | -1/+4 |
* | STY: Fix up some remaining old-style exceptions. | Charles Harris | 2011-04-05 | 1 | -3/+3 |
* | STY: Update exception styles, trickier ones. | Charles Harris | 2011-04-05 | 1 | -2/+2 |
* | STY: Update exception style, easy ones. | Charles Harris | 2011-04-05 | 1 | -1/+1 |
* | BUG: Workaround for the fact the Python 2.4 doesn't accept 'Ub' as a file | Charles Harris | 2011-04-05 | 1 | -1/+1 |
* | moved import statement in npyio.py for ease of reading | Paul Anton Letnes | 2011-04-04 | 1 | -1/+1 |
* | BUG: ticket #1071, fix loadtxt to handle tab delimited data with missing | Derek Homeir | 2011-04-04 | 1 | -3/+4 |
* | ENH: Let genfromtxt accept generators as text sources. Add test | Charles Harris | 2011-04-03 | 1 | -19/+27 |
* | ENH: ticket #1616, let loadtxt accept generators in additions to | Charles Harris | 2011-04-03 | 1 | -37/+34 |
* | ENH: add ndmin keyword to loadtxt. Closes #1562. | Ralf Gommers | 2011-04-03 | 1 | -2/+19 |
* | ENH: return empty array from loadtxt for an empty file. Closes #1752. | Ralf Gommers | 2011-04-03 | 1 | -1/+4 |
* | ENH: ticket #1458, make loadtxt(..., unpack=True) unpack structured array | Derek Homier | 2011-04-02 | 1 | -2/+7 |
* | BUG: ticket #1565, fix conversion of int64 and uint64 types by loadtxt. | Christoph Gohlke | 2011-04-02 | 1 | -0/+4 |
* | BUG: open genfromtxt file as binary; add test for filename use | Matthew Brett | 2011-03-30 | 1 | -1/+1 |
* | DEP: Update deprecation messages in genloadtxt with a version number. | rgommers | 2011-03-11 | 1 | -12/+14 |
* | DOC: commit some more fixes from the doc wiki. | rgommers | 2011-03-03 | 1 | -1/+1 |
* | BUG: correct file name in fromregex. | rgommers | 2011-03-01 | 1 | -2/+2 |
* | ENH: core: Implement PyArray_CopyInto using the new iterator | Mark Wiebe | 2011-01-16 | 1 | -22/+38 |
* | BUG: Try fix for python 2.4, use list instead of tuple. | Charles Harris | 2010-12-02 | 1 | -1/+1 |
* | BUG: Fix GzipFile wrapper to be <= 2.5 compatible. | Stefan van der Walt | 2010-11-23 | 1 | -4/+9 |
* | ENH: Remove deprecation warning from GzipFile wrapper. | Stefan van der Walt | 2010-11-18 | 1 | -4/+6 |