summaryrefslogtreecommitdiff
path: root/numpy/lib
Commit message (Collapse)AuthorAgeFilesLines
...
* BUG: lib: make loadtxt work on Py3 when fh returns unicode (fixes #1479)Pauli Virtanen2010-05-081-1/+1
|
* BUG: Make interp handle zero dimensional ndarrays as interpolationCharles Harris2010-05-072-7/+37
| | | | | points. Add some tests for interp. Fixes ticket #1177. unc_api.txt.tmp
* Merge branch 'vectorize'Charles Harris2010-05-062-57/+162
|
* ENH: Add test of polyder return type.Charles Harris2010-05-051-0/+8
|
* BUG: Make polyder return a poly1d for the zeroeth order derivative whenCharles Harris2010-05-051-8/+9
| | | | the input is a poly1d. Fixes ticket #1249.
* BUG: Fix datetime_data for python versions >= 2.7.Charles Harris2010-05-041-1/+4
|
* BUG: The builtin file function goes away in python 3k, use open instead.Charles Harris2010-05-031-1/+1
|
* ENH, BUG: PyCObject will be deprecated in python 2.7. So use the NpyCapsuleCharles Harris2010-05-031-1/+1
| | | | | | | compatibility functions in npy_3kcompat.h to replace the current calls. This gets rid of a number of version checks and is easier to maintain. Fix bug that was present in the ufunc _loop1d_list_free destructor in the python3k case.
* BUG: loadtxt should handle universal newlines.Stefan van der Walt2010-05-022-1/+11
|
* BUG: Fix missing import for datatime_data.Stefan van der Walt2010-04-272-0/+8
|
* ENH: Remove some unused variable warnings.Charles Harris2010-04-251-4/+3
|
* FIX: Workaround python3.1 callable not working with PyCapsule.Charles Harris2010-04-251-1/+4
|
* correct a bug in fix() that was introduced in r8293Darren Dale2010-04-182-1/+2
|
* BUG: Use deprecated decorator in testing ufunclike.log2.Charles Harris2010-04-142-11/+9
|
* BUG: Python 2.4 doesn't support "with" statement, use try instead.Charles Harris2010-04-131-1/+3
|
* BUG: Deprecate ufunclike.log2 and take it off the __all__ list. It was shadowingCharles Harris2010-04-131-1/+6
| | | | the ufunc of the same name.
* ENH: Rewrite doctest in test_ufunclike.py as normal nose tests. Remove test ofCharles Harris2010-04-131-74/+60
| | | | sign ufunc, it belongs elsewhere.
* ENH: get rid of #warning directives, either by fixing the issue or changing ↵Pauli Virtanen2010-04-041-3/+3
| | | | them to comments
* BUG: fix div by zero handling in nper.David Cournapeau2010-03-312-9/+19
|
* BUG: move test from core to lib, mark it as deprected.David Cournapeau2010-03-311-0/+11
|
* BUG: fix kaiser for M=1.David Cournapeau2010-03-312-1/+3
|
* BUG: Should be using StringIO, not BytesIO. The 2to3 script takes careCharles Harris2010-03-271-6/+3
| | | | of changing the module to import from to io.
* * Fixed merge_arrays for arrays of size 1 (bug #1407)pierregm2010-03-262-90/+130
| | | | * merge_arrays now accepts sequences of lists/tuples as inputs
* BUG: Update StringIO in _lookfor_generate_cache for Python3.x.Charles Harris2010-03-251-8/+10
| | | | Make small cleanup.
* CLN: Small cleanups. Fix docstring examples.Charles Harris2010-03-251-11/+6
|
* Rename numpy/lib/io.py to numpy/lib/npyio.py. The py3tool can probably beCharles Harris2010-03-242-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)pierregm2010-03-222-383/+395
|
* BUG: lib: fix #1435, np.gradient should use zeros_likePauli Virtanen2010-03-182-1/+6
| | | | Thanks to Ryan May for the patch.
* minor change to ufunclike.fix, one less array to build and make compatibleDarren Dale2010-03-142-2/+20
| | | | with subclasses of ndarray
* DOC - fix doc errorMatthew Brett2010-03-111-1/+1
|
* BUG: Replace deprecated PyCObject by PyCapsule for Python >= 3.1.Charles Harris2010-02-231-7/+12
|
* BUG: Workarounds for isfinite/isinf invalid values.Charles Harris2010-02-211-6/+6
|
* BUG: Fix possibly unbalanced seterr pairs. Fixes change in state of invalidCharles Harris2010-02-211-36/+124
| | | | after running test().
* STY: Use explicit itertools namespace for all itertools functions.Charles Harris2010-02-211-6/+4
|
* STY: Remove unneeded import.Charles Harris2010-02-211-5/+0
|
* PY3: The izip function is no longer available in itertools. Be explicit aboutCharles Harris2010-02-211-16/+17
| | | | using itertools.izip to 2to3 can make the fix.
* WHT: Whitespace removal.Charles Harris2010-02-211-2/+1
|
* 3K: lib: implement __rtruediv__ for poly1dPauli Virtanen2010-02-211-0/+2
|
* 3K: lib: fix bytes vs str issues in testsPauli Virtanen2010-02-212-8/+11
|
* 3K: lib: zip is izip on Py3Pauli Virtanen2010-02-211-0/+4
|
* 3K: lib: missing_values in genfromtxt is never a basestring on Py3Pauli Virtanen2010-02-212-2/+2
|
* 3K: lib: fix sort(key=) issuePauli Virtanen2010-02-211-5/+3
|
* 3K: lib: poly1d __div__ -> __truediv__, and fix its doctestsPauli Virtanen2010-02-212-7/+9
|
* 3K: BUG: fix unravel_index integer divisionPauli Virtanen2010-02-211-1/+1
|
* DEP: Fix more files for unittest deprecated functions. It isn't clear why theseCharles Harris2010-02-211-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 unittestCharles Harris2010-02-204-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_reducePauli Virtanen2010-02-202-0/+8
| | | | Instead, manually import reduce where necessary.
* BUG: lib: ensure 'bytes' is imported in io.pyPauli Virtanen2010-02-201-1/+1
|
* 3K: lib: more str vs bytes issues in the lib/io loadtxt, savetxt and genfromtxtPauli Virtanen2010-02-204-66/+103
|
* 3K: lib: fix savetxtPauli Virtanen2010-02-201-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.