summaryrefslogtreecommitdiff
path: root/numpy/core
Commit message (Collapse)AuthorAgeFilesLines
* Fix cygwin compilationDavid Cournapeau2008-09-131-3/+3
| | | | | | Recent version of binutils (2.18.50) do not accept 4 bytes operand for some opcodes like fnstsw (which always expected a 2 bytes operand). Replace the type of the argument from unsigned 2 bytes to unsigned 4 bytes unsigned integer.
* Fix failing doctests.Alan McIntyre2008-09-132-2/+4
|
* Removed unused imports.Alan McIntyre2008-09-093-5/+0
|
* Replaced numpy.testing.decorators.skipknownfailure with knownfailureif, Alan McIntyre2008-09-041-1/+1
| | | | | which allows flagging tests as known failures rather than skips. Updated test_umath to use knownfailureif.
* Ufunc docstrings: show the 'out' arguments in a more standard wayPauli Virtanen2008-09-042-13/+23
|
* reindenting prior to releaseJarrod Millman2008-09-022-5/+5
|
* Fix regression test #771 on 64 bits architecture.David Cournapeau2008-09-021-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 Cournapeau2008-09-011-0/+2
|
* Add test for ticket #882 fix.Travis Oliphant2008-08-291-0/+5
|
* Fix 0-length sequence error in #882.Travis Oliphant2008-08-291-0/+4
|
* Fix regression test for #771.David Cournapeau2008-08-291-1/+1
|
* Fix reshaping 0-sized arrays.David Cournapeau2008-08-291-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 Cournapeau2008-08-291-0/+6
|
* Change convolve to raise ValueError on runtime error instead of relying onCharles Harris2008-08-282-6/+8
| | | | assert. The latter fails when run with python -OO.
* Add missing '|' for byteorder.Travis Oliphant2008-08-271-1/+1
|
* Apply modified version of Andrew Dalke's patch in #874 to create a ↵Travis Oliphant2008-08-272-4/+18
| | | | quicker-loading numpy.
* Simplify (commented out) trunc.Charles Harris2008-08-271-1/+1
|
* Revert r5698, r5699, and r5702 until build problems are fixed.Charles Harris2008-08-273-21/+16
| | | | Fix ticket #878 differently.
* Add NPY_FEATURE_VERSION which can be used to mark minor API versionStefan van der Walt2008-08-261-4/+17
| | | | increments.
* Add trunc test.David Cournapeau2008-08-251-0/+1
|
* Add a trunc function in umath module.David Cournapeau2008-08-254-1/+35
|
* Add pure C trunc function implementations for platform which do not have it.David Cournapeau2008-08-251-4/+18
|
* Detect whether trunc is available or not.David Cournapeau2008-08-252-1/+2
|
* Note on mmap size on python 2.5 from numpy bookMatthew Brett2008-08-241-0/+8
|
* Fix docstring indentationPauli Virtanen2008-08-241-4/+8
|
* Fix the test and fix the arrtype_new code for scalars a little bit.Travis Oliphant2008-08-242-10/+8
|
* BUG: Fix to ticket #816: calling object_() Segfaults.Travis Oliphant2008-08-242-4/+29
|
* Cleaned up logic and annotation of __del__ method, with testMatthew Brett2008-08-242-20/+23
|
* Trial fix to ticket #698Travis Oliphant2008-08-232-1/+42
|
* Remove unused variable.Stefan van der Walt2008-08-221-3/+0
|
* reverting C-API change from r5626Jarrod Millman2008-08-223-18/+17
|
* Update fenv.h for cygwin: all asm calls should be tagged as volatile.David Cournapeau2008-08-201-3/+3
|
* Add note telling users to add new functions to the end of the list.Charles Harris2008-08-191-1/+4
|
* Move generalised ufunc functionality to the gen_ufuncs branch.Stefan van der Walt2008-08-154-509/+14
|
* Re-factor code to remove dependency of numpy.core on numpy.lib by moving ↵Travis Oliphant2008-08-152-1/+44
| | | | issubclass_, issubsctype, and issubdtype to numpy.core.numerictypes
* Split generated docstring literals for compilers which cannot handle long ↵David Cournapeau2008-08-151-0/+4
| | | | strings.z
* Fix warnings in ufunc code [patch by Wenjie Fu].Stefan van der Walt2008-08-141-3/+3
|
* Whitespace cleanup. Move definition of variable to beginning of function.Stefan van der Walt2008-08-141-10/+11
|
* Move declaration to appease some compilers [patch by Hans-Andreas Engel].Stefan van der Walt2008-08-141-32/+38
|
* Bump NPY_VERSION for ufunc patch.Stefan van der Walt2008-08-141-1/+1
|
* Framework for generalised ufuncs [patch by Wenjie Fu and Hans-Andreas Engel].Stefan van der Walt2008-08-143-13/+501
|
* Remove C99 test cases; they are not guaranteed to succeed on all plaftorms, ↵Pauli Virtanen2008-08-131-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 Cournapeau2008-08-101-3/+5
|
* Fix ticket #674.Travis Oliphant2008-08-102-2/+14
|
* *Full recompile needed*: changed the name of hasobject structure member to ↵Travis Oliphant2008-08-103-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 Cournapeau2008-08-091-5/+9
|
* ran reindentJarrod Millman2008-08-0816-46/+40
|
* Fix ticket #877 along with other bugs not yet reported for data-types with ↵Travis Oliphant2008-08-064-5/+30
| | | | titles.
* Always define __STDC_FORMAT_MACROS for C++ support of PRIdPTR.David Cournapeau2008-08-062-0/+13
|
* Follow-up on changes to histogram semantics.dhuard2008-08-051-2/+2
| | | | `new` is now set to None by default, which triggers the new behaviour and prints a warning.