Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | BUG: Python 2.4 doesn't support "with" statement, use try instead. | Charles Harris | 2010-04-13 | 1 | -1/+3 | |
| | ||||||
* | BUG: Deprecate ufunclike.log2 and take it off the __all__ list. It was shadowing | Charles Harris | 2010-04-13 | 1 | -1/+6 | |
| | | | | the ufunc of the same name. | |||||
* | ENH: Rewrite doctest in test_ufunclike.py as normal nose tests. Remove test of | Charles Harris | 2010-04-13 | 1 | -74/+60 | |
| | | | | sign ufunc, it belongs elsewhere. | |||||
* | ENH: get rid of #warning directives, either by fixing the issue or changing ↵ | Pauli Virtanen | 2010-04-04 | 1 | -3/+3 | |
| | | | | them to comments | |||||
* | BUG: fix div by zero handling in nper. | David Cournapeau | 2010-03-31 | 2 | -9/+19 | |
| | ||||||
* | BUG: move test from core to lib, mark it as deprected. | David Cournapeau | 2010-03-31 | 1 | -0/+11 | |
| | ||||||
* | BUG: fix kaiser for M=1. | David Cournapeau | 2010-03-31 | 2 | -1/+3 | |
| | ||||||
* | BUG: Should be using StringIO, not BytesIO. The 2to3 script takes care | Charles Harris | 2010-03-27 | 1 | -6/+3 | |
| | | | | of changing the module to import from to io. | |||||
* | * Fixed merge_arrays for arrays of size 1 (bug #1407) | pierregm | 2010-03-26 | 2 | -90/+130 | |
| | | | | * merge_arrays now accepts sequences of lists/tuples as inputs | |||||
* | BUG: Update StringIO in _lookfor_generate_cache for Python3.x. | Charles Harris | 2010-03-25 | 1 | -8/+10 | |
| | | | | Make small cleanup. | |||||
* | CLN: Small cleanups. Fix docstring examples. | Charles Harris | 2010-03-25 | 1 | -11/+6 | |
| | ||||||
* | Rename numpy/lib/io.py to numpy/lib/npyio.py. The py3tool can probably be | Charles Harris | 2010-03-24 | 2 | -2/+2 | |
| | | | | cleaned up a bit more with this change, but that is for later. | |||||
* | * Use putmask instead of fancy indexing in _nanop (bug #1421) | pierregm | 2010-03-22 | 2 | -383/+395 | |
| | ||||||
* | BUG: lib: fix #1435, np.gradient should use zeros_like | Pauli Virtanen | 2010-03-18 | 2 | -1/+6 | |
| | | | | Thanks to Ryan May for the patch. | |||||
* | minor change to ufunclike.fix, one less array to build and make compatible | Darren Dale | 2010-03-14 | 2 | -2/+20 | |
| | | | | with subclasses of ndarray | |||||
* | DOC - fix doc error | Matthew Brett | 2010-03-11 | 1 | -1/+1 | |
| | ||||||
* | BUG: Replace deprecated PyCObject by PyCapsule for Python >= 3.1. | Charles Harris | 2010-02-23 | 1 | -7/+12 | |
| | ||||||
* | BUG: Workarounds for isfinite/isinf invalid values. | Charles Harris | 2010-02-21 | 1 | -6/+6 | |
| | ||||||
* | BUG: Fix possibly unbalanced seterr pairs. Fixes change in state of invalid | Charles Harris | 2010-02-21 | 1 | -36/+124 | |
| | | | | after running test(). | |||||
* | STY: Use explicit itertools namespace for all itertools functions. | Charles Harris | 2010-02-21 | 1 | -6/+4 | |
| | ||||||
* | STY: Remove unneeded import. | Charles Harris | 2010-02-21 | 1 | -5/+0 | |
| | ||||||
* | PY3: The izip function is no longer available in itertools. Be explicit about | Charles Harris | 2010-02-21 | 1 | -16/+17 | |
| | | | | using itertools.izip to 2to3 can make the fix. | |||||
* | WHT: Whitespace removal. | Charles Harris | 2010-02-21 | 1 | -2/+1 | |
| | ||||||
* | 3K: lib: implement __rtruediv__ for poly1d | Pauli Virtanen | 2010-02-21 | 1 | -0/+2 | |
| | ||||||
* | 3K: lib: fix bytes vs str issues in tests | Pauli Virtanen | 2010-02-21 | 2 | -8/+11 | |
| | ||||||
* | 3K: lib: zip is izip on Py3 | Pauli Virtanen | 2010-02-21 | 1 | -0/+4 | |
| | ||||||
* | 3K: lib: missing_values in genfromtxt is never a basestring on Py3 | Pauli Virtanen | 2010-02-21 | 2 | -2/+2 | |
| | ||||||
* | 3K: lib: fix sort(key=) issue | Pauli Virtanen | 2010-02-21 | 1 | -5/+3 | |
| | ||||||
* | 3K: lib: poly1d __div__ -> __truediv__, and fix its doctests | Pauli Virtanen | 2010-02-21 | 2 | -7/+9 | |
| | ||||||
* | 3K: BUG: fix unravel_index integer division | Pauli Virtanen | 2010-02-21 | 1 | -1/+1 | |
| | ||||||
* | DEP: Fix more files for unittest deprecated functions. It isn't clear why these | Charles Harris | 2010-02-21 | 1 | -6/+6 | |
| | | | | tests didn't issue deprecation warnings. Are they being run? | |||||
* | DEP: Fix deprecation warnings in Python 3.1. The warnings come from the unittest | Charles Harris | 2010-02-20 | 4 | -11/+11 | |
| | | | | | | | | | module. The fix should be good for Python >= 2.4 and used the following sed script: s/\<failUnless\>/assertTrue/g s/\<failIf\>/assertFalse/g s/\<failUnlessEqual\>/assertEqual/g s/\<failUnlessRaises\>/assertRaises/g | |||||
* | 3K: BUG: work around bugs in Python 3.1.1 2to3 by not using fixes_reduce | Pauli Virtanen | 2010-02-20 | 2 | -0/+8 | |
| | | | | Instead, manually import reduce where necessary. | |||||
* | BUG: lib: ensure 'bytes' is imported in io.py | Pauli Virtanen | 2010-02-20 | 1 | -1/+1 | |
| | ||||||
* | 3K: lib: more str vs bytes issues in the lib/io loadtxt, savetxt and genfromtxt | Pauli Virtanen | 2010-02-20 | 4 | -66/+103 | |
| | ||||||
* | 3K: lib: fix savetxt | Pauli Virtanen | 2010-02-20 | 1 | -9/+23 | |
| | | | | | | This will make savetxt open files in the 'wb' mode on Python 3. To allow using any sort of newlines (which are different e.g. on Windows), add a new 'newline' keyword. | |||||
* | 3K: lib: fix some bytes vs. str issues in _iotools.py and io.py -- mainly ↵ | Pauli Virtanen | 2010-02-20 | 5 | -88/+143 | |
| | | | | genfromtxt | |||||
* | 3K: lib: even more bytes/str fixes in format.py tests | Pauli Virtanen | 2010-02-20 | 1 | -6/+8 | |
| | ||||||
* | 3K: lib: use BytesIO in test_io | Pauli Virtanen | 2010-02-20 | 1 | -109/+115 | |
| | ||||||
* | 3K: lib: fix some bytes/str issues in _format.py and its tests | Pauli Virtanen | 2010-02-20 | 2 | -7/+22 | |
| | ||||||
* | ENH: lib: write fortran-contiguous data to files using arr.T.tofile instead ↵ | Pauli Virtanen | 2010-02-20 | 1 | -4/+5 | |
| | | | | | | | | | of arr.data (required for Py3 compatibility) The issue is that when passing a buffer object to Python's io.BufferedWriter.write, it will try to obtain the buffer using PyBUF_ND | PyBUF_C_CONTIGUOUS. This will fail for strided arrays -- seems to be an issue in Python, as it probably should try to obtain a SIMPLE buffer. | |||||
* | 3K: lib: adapt safe_eval for Py3 ast module | Pauli Virtanen | 2010-02-20 | 1 | -32/+88 | |
| | ||||||
* | 3K: lib: do not slice range() in _iotools needlessly | Pauli Virtanen | 2010-02-20 | 1 | -1/+1 | |
| | ||||||
* | 3K: lib: Make _datasource and its tests Py3 compatible + slight cleanup of ↵ | Pauli Virtanen | 2010-02-20 | 2 | -9/+12 | |
| | | | | the code | |||||
* | 3K: lib: bytes vs. str fixes in lib.format and lib.io | Pauli Virtanen | 2010-02-20 | 2 | -5/+7 | |
| | ||||||
* | more docstring updates from pydoc website (thanks to everyone who contributed!) | Jarrod Millman | 2010-02-17 | 4 | -55/+71 | |
| | ||||||
* | removed old behavior for the histogram function. | dhuard | 2010-02-16 | 3 | -158/+67 | |
| | ||||||
* | BUG: Check input to poly for zero-dimensional arrays. | Stefan van der Walt | 2010-02-08 | 2 | -2/+8 | |
| | ||||||
* | BUG: fix #1387. Raise ValueError for empty input to bincount. | David Cournapeau | 2010-02-02 | 2 | -0/+8 | |
| | ||||||
* | TST: add a couple of simple unit-tests for bincount. | David Cournapeau | 2010-02-02 | 1 | -0/+23 | |
| |