| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Split formatting tests to tag long double ones as known failure on win32. | David Cournapeau | 2008-09-08 | 1 | -10/+36 |
| | | |||||
| * | Backports for: | Alan McIntyre | 2008-09-06 | 1 | -1/+1 |
| | | | | | | | | | | rev 5769 - Replaced numpy.testing.decorators.skipknownfailure with knownfailureif, which allows flagging tests as known failures rather than skips. Updated test_umath to use knownfailureif. rev 5770 - Renamed classes in nosetester.py/noseclasses.py to conform to PEP 8. rev 5772 - Removed debugging code from noseclasses.py | ||||
| * | reindenting prior to release | Jarrod Millman | 2008-09-02 | 2 | -5/+5 |
| | | |||||
| * | Fix regression test #771 on 64 bits architecture. | David Cournapeau | 2008-09-02 | 1 | -1/+1 |
| | | | | | | The test assumed an item was 4 bytes. Use itemsize instead of harcoding 4 bytes per item. | ||||
| * | Fix unused variable warning in object_arrtype_new. | David Cournapeau | 2008-09-01 | 1 | -0/+2 |
| | | |||||
| * | Add test for ticket #882 fix. | Travis Oliphant | 2008-08-29 | 1 | -0/+5 |
| | | |||||
| * | Fix 0-length sequence error in #882. | Travis Oliphant | 2008-08-29 | 1 | -0/+4 |
| | | |||||
| * | Fix regression test for #771. | David Cournapeau | 2008-08-29 | 1 | -1/+1 |
| | | |||||
| * | Fix reshaping 0-sized arrays. | David Cournapeau | 2008-08-29 | 1 | -1/+5 |
| | | | | | | The nocopy logic does not handle 0-sized arrays correctly, so just copy. It is a not really useful corner case, so doing a copy should not matter much. | ||||
| * | Add a regression test to show #771 failure. | David Cournapeau | 2008-08-29 | 1 | -0/+6 |
| | | |||||
| * | Change convolve to raise ValueError on runtime error instead of relying on | Charles Harris | 2008-08-28 | 2 | -6/+8 |
| | | | | | assert. The latter fails when run with python -OO. | ||||
| * | Add missing '|' for byteorder. | Travis Oliphant | 2008-08-27 | 1 | -1/+1 |
| | | |||||
| * | Apply modified version of Andrew Dalke's patch in #874 to create a ↵ | Travis Oliphant | 2008-08-27 | 2 | -4/+18 |
| | | | | | quicker-loading numpy. | ||||
| * | Simplify (commented out) trunc. | Charles Harris | 2008-08-27 | 1 | -1/+1 |
| | | |||||
| * | Revert r5698, r5699, and r5702 until build problems are fixed. | Charles Harris | 2008-08-27 | 3 | -21/+16 |
| | | | | | Fix ticket #878 differently. | ||||
| * | Add NPY_FEATURE_VERSION which can be used to mark minor API version | Stefan van der Walt | 2008-08-26 | 1 | -4/+17 |
| | | | | | increments. | ||||
| * | Add trunc test. | David Cournapeau | 2008-08-25 | 1 | -0/+1 |
| | | |||||
| * | Add a trunc function in umath module. | David Cournapeau | 2008-08-25 | 4 | -1/+35 |
| | | |||||
| * | Add pure C trunc function implementations for platform which do not have it. | David Cournapeau | 2008-08-25 | 1 | -4/+18 |
| | | |||||
| * | Detect whether trunc is available or not. | David Cournapeau | 2008-08-25 | 2 | -1/+2 |
| | | |||||
| * | Note on mmap size on python 2.5 from numpy book | Matthew Brett | 2008-08-24 | 1 | -0/+8 |
| | | |||||
| * | Fix docstring indentation | Pauli Virtanen | 2008-08-24 | 1 | -4/+8 |
| | | |||||
| * | Fix the test and fix the arrtype_new code for scalars a little bit. | Travis Oliphant | 2008-08-24 | 2 | -10/+8 |
| | | |||||
| * | BUG: Fix to ticket #816: calling object_() Segfaults. | Travis Oliphant | 2008-08-24 | 2 | -4/+29 |
| | | |||||
| * | Cleaned up logic and annotation of __del__ method, with test | Matthew Brett | 2008-08-24 | 2 | -20/+23 |
| | | |||||
| * | Trial fix to ticket #698 | Travis Oliphant | 2008-08-23 | 2 | -1/+42 |
| | | |||||
| * | Remove unused variable. | Stefan van der Walt | 2008-08-22 | 1 | -3/+0 |
| | | |||||
| * | reverting C-API change from r5626 | Jarrod Millman | 2008-08-22 | 3 | -18/+17 |
| | | |||||
| * | Update fenv.h for cygwin: all asm calls should be tagged as volatile. | David Cournapeau | 2008-08-20 | 1 | -3/+3 |
| | | |||||
| * | Add note telling users to add new functions to the end of the list. | Charles Harris | 2008-08-19 | 1 | -1/+4 |
| | | |||||
| * | Move generalised ufunc functionality to the gen_ufuncs branch. | Stefan van der Walt | 2008-08-15 | 4 | -509/+14 |
| | | |||||
| * | Re-factor code to remove dependency of numpy.core on numpy.lib by moving ↵ | Travis Oliphant | 2008-08-15 | 2 | -1/+44 |
| | | | | | issubclass_, issubsctype, and issubdtype to numpy.core.numerictypes | ||||
| * | Split generated docstring literals for compilers which cannot handle long ↵ | David Cournapeau | 2008-08-15 | 1 | -0/+4 |
| | | | | | strings.z | ||||
| * | Fix warnings in ufunc code [patch by Wenjie Fu]. | Stefan van der Walt | 2008-08-14 | 1 | -3/+3 |
| | | |||||
| * | Whitespace cleanup. Move definition of variable to beginning of function. | Stefan van der Walt | 2008-08-14 | 1 | -10/+11 |
| | | |||||
| * | Move declaration to appease some compilers [patch by Hans-Andreas Engel]. | Stefan van der Walt | 2008-08-14 | 1 | -32/+38 |
| | | |||||
| * | Bump NPY_VERSION for ufunc patch. | Stefan van der Walt | 2008-08-14 | 1 | -1/+1 |
| | | |||||
| * | Framework for generalised ufuncs [patch by Wenjie Fu and Hans-Andreas Engel]. | Stefan van der Walt | 2008-08-14 | 3 | -13/+501 |
| | | |||||
| * | Remove C99 test cases; they are not guaranteed to succeed on all plaftorms, ↵ | Pauli Virtanen | 2008-08-13 | 1 | -138/+0 |
| | | | | | so it's better to reintroduce them only after the inf/nan handling has been addressed. | ||||
| * | Tweak error msg when python.h not compilable with scons. | David Cournapeau | 2008-08-10 | 1 | -3/+5 |
| | | |||||
| * | Fix ticket #674. | Travis Oliphant | 2008-08-10 | 2 | -2/+14 |
| | | |||||
| * | *Full recompile needed*: changed the name of hasobject structure member to ↵ | Travis Oliphant | 2008-08-10 | 3 | -17/+18 |
| | | | | | flags in the PyArray_Descr structure and increased it's size to int | ||||
| * | Give better error message when testing python.h fails. | David Cournapeau | 2008-08-09 | 1 | -5/+9 |
| | | |||||
| * | ran reindent | Jarrod Millman | 2008-08-08 | 16 | -46/+40 |
| | | |||||
| * | Fix ticket #877 along with other bugs not yet reported for data-types with ↵ | Travis Oliphant | 2008-08-06 | 4 | -5/+30 |
| | | | | | titles. | ||||
| * | Always define __STDC_FORMAT_MACROS for C++ support of PRIdPTR. | David Cournapeau | 2008-08-06 | 2 | -0/+13 |
| | | |||||
| * | Follow-up on changes to histogram semantics. | dhuard | 2008-08-05 | 1 | -2/+2 |
| | | | | | `new` is now set to None by default, which triggers the new behaviour and prints a warning. | ||||
| * | Merge from documentation editor. | Stefan van der Walt | 2008-08-05 | 7 | -912/+4074 |
| | | |||||
| * | Fix NPY_INTP_FMT when C99 format available (typo + forgot to include ↵ | David Cournapeau | 2008-08-05 | 1 | -1/+4 |
| | | | | | inttypes.h), | ||||
| * | Use C99 print formatting if available for NPY_INTP. | David Cournapeau | 2008-08-05 | 4 | -1/+37 |
| | | |||||
