Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ENH, BUG: PyCObject will be deprecated in python 2.7. So use the NpyCapsule | Charles Harris | 2010-05-03 | 23 | -241/+71 |
| | | | | | | | 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 Walt | 2010-05-02 | 2 | -1/+11 |
| | |||||
* | ENH: core: add .dot() method to ndarrays; a.dot(b) == np.dot(a, b) | Pauli Virtanen | 2010-04-30 | 3 | -2/+36 |
| | |||||
* | BUG: In datetime, avoid overflow by casting multipliers to npy_int64. | Stefan van der Walt | 2010-04-27 | 3 | -52/+77 |
| | |||||
* | BUG: Fix missing import for datatime_data. | Stefan van der Walt | 2010-04-27 | 2 | -0/+8 |
| | |||||
* | Fixed .var for arrays with 1 more valid value than ddofs | pierregm | 2010-04-27 | 2 | -2/+15 |
| | |||||
* | Add fixme note. | Charles Harris | 2010-04-27 | 1 | -0/+1 |
| | |||||
* | BUG: core: fix a reference count bug in umath:InitOtherOperators (cf #1464) | Pauli Virtanen | 2010-04-26 | 1 | -1/+0 |
| | | | | Thanks to mras | ||||
* | ENH: Simplify some functions using NpyArg_ParseKeywords. | Charles Harris | 2010-04-26 | 1 | -18/+6 |
| | |||||
* | ENH: Add NpyArg_ParseKeywords helper function. | Charles Harris | 2010-04-26 | 1 | -0/+27 |
| | |||||
* | BUG: fix reference count bug in set_numeric_ops (fixes #1464, #1462) | Pauli Virtanen | 2010-04-25 | 1 | -0/+1 |
| | |||||
* | ENH: Add some tests for ndarray.resize. | Charles Harris | 2010-04-25 | 1 | -0/+19 |
| | |||||
* | BUG: Catch resize shape conversion errors. | Charles Harris | 2010-04-25 | 1 | -5/+8 |
| | |||||
* | BUG: Fix the fix so resize works like it is supposed to. | Charles Harris | 2010-04-25 | 1 | -6/+25 |
| | |||||
* | ENH: Remove order keyword from ndarray.resize. This is pretty much | Charles Harris | 2010-04-25 | 5 | -75/+41 |
| | | | | Scott Sinclair's patch from ticket #840. | ||||
* | ENH: Remove some unused variable warnings. | Charles Harris | 2010-04-25 | 3 | -11/+7 |
| | |||||
* | BUG: Fix missing "%s" in error message format. Remove unused variable. | Charles Harris | 2010-04-25 | 1 | -2/+2 |
| | |||||
* | BUG: Fix wrong destructor type in NpyCapsule_FromVoidPtrAndDesc. | Charles Harris | 2010-04-25 | 1 | -1/+2 |
| | |||||
* | FIX: Workaround python3.1 callable not working with PyCapsule. | Charles Harris | 2010-04-25 | 1 | -1/+4 |
| | |||||
* | ENH: Apply old patch hanging around in my directory. I don't recall where it | Charles Harris | 2010-04-25 | 1 | -0/+6 |
| | | | | came from, but it seems appropriate. | ||||
* | correct a bug in fix() that was introduced in r8293 | Darren Dale | 2010-04-18 | 2 | -1/+2 |
| | |||||
* | BUG: Use deprecated decorator in testing ufunclike.log2. | Charles Harris | 2010-04-14 | 2 | -11/+9 |
| | |||||
* | 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: Add test of sign ufunc removed from test_ufunclike. | Charles Harris | 2010-04-13 | 1 | -0/+48 |
| | |||||
* | 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: Add more tests for new memmap object attributes. | Charles Harris | 2010-04-13 | 1 | -2/+16 |
| | |||||
* | BUG: Need to use os.path.abspath on file handle name also. | Charles Harris | 2010-04-12 | 1 | -1/+1 |
| | |||||
* | ENH: Make the new memmap filename attribute store the full path to the file. | Charles Harris | 2010-04-12 | 1 | -1/+14 |
| | | | | Add offset and mode attributes to the memmap class. | ||||
* | ENH: Add filename attribute to memmap. | Charles Harris | 2010-04-12 | 2 | -0/+14 |
| | |||||
* | ENH: Add test for log1p on intel 32 bits for certain small values of p. | Charles Harris | 2010-04-05 | 1 | -0/+4 |
| | |||||
* | ENH: Try to make log1p a bit more resistant to compiler shenanigans. | Charles Harris | 2010-04-05 | 1 | -6/+9 |
| | | | | STY: Couple of style fixups. | ||||
* | ENH: Use standard npy constant definitions in log2, exp2 functions. | Charles Harris | 2010-04-05 | 1 | -17/+14 |
| | | | | | STY: Some cleanups, fix goto into if statement. BUG: Use proper name for expm1, not exp1m. | ||||
* | ENH: Make npy_log2_1p and npy_exp2_1m use standard functions. | Charles Harris | 2010-04-05 | 1 | -59/+49 |
| | | | | | This avoids some problems with gcc optimizations on 32 intel systems. In any case, the problem is pushed back to location single functions. | ||||
* | ENH: core: add sanity checks and warnings to PEP3118 -> ndarray conversion | Pauli Virtanen | 2010-04-04 | 1 | -0/+14 |
| | |||||
* | ENH: core: improve the way trailing padding is dealed with in PEP 3118 ↵ | Pauli Virtanen | 2010-04-04 | 2 | -16/+92 |
| | | | | format strings | ||||
* | ENH: core: improve parsing of byte order from PEP 3118 format strings | Pauli Virtanen | 2010-04-04 | 2 | -7/+20 |
| | |||||
* | ENH: core: improve PEP 3118 parser's alignment handling | Pauli Virtanen | 2010-04-04 | 2 | -12/+72 |
| | | | | Now, padding will be more forcefully inserted for native-aligned items. | ||||
* | BUG: core: fix bugs in PEP 3118 format string parsing | Pauli Virtanen | 2010-04-04 | 2 | -6/+11 |
| | | | | | - Handle consecutive characters (eg. 'xxxx') properly - Compute native padding correctly | ||||
* | ENH: get rid of #warning directives, either by fixing the issue or changing ↵ | Pauli Virtanen | 2010-04-04 | 7 | -20/+10 |
| | | | | them to comments | ||||
* | TST: mark slow f2py tests + add f2py test function. | David Cournapeau | 2010-03-31 | 8 | -0/+17 |
| | |||||
* | 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 | 2 | -10/+11 |
| | |||||
* | BUG: fix divide by zero warnings in tests. | David Cournapeau | 2010-03-31 | 2 | -13/+25 |
| | |||||
* | 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. |