summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* DOC: Add info about iterator, new functions, and C API additions to release ↵Mark Wiebe2011-03-132-6/+32
| | | | notes
* DOC: Document constructor API change, and fill in some more missing ↵Mark Wiebe2011-03-133-53/+115
| | | | documentation
* API: Simplify basic iterator constructors, add 'itershape' to advanced ↵Mark Wiebe2011-03-1311-116/+269
| | | | iterator constructor
* DOC: Updated f2py related release notes.Pearu Peterson2011-03-131-4/+15
|
* ENH: f2py: support Fortran size function with two arguments (ticket #1765).Pearu Peterson2011-03-133-1/+53
|
* DOC: update 1.6.0 release notes. Add headers for items to still be filled in.rgommers2011-03-131-2/+44
|
* BUG: fix assert_almost_equal and co. to work with infs.rgommers2011-03-122-17/+35
|
* ENH: add files generated during build and site.cfg to .gitignore.rgommers2011-03-121-0/+6
|
* BUG: For compatibility with 1.5, revert to permitting limited broadcasting ↵Mark Wiebe2011-03-113-2/+32
| | | | | | | | | of the assignment output This change got Travis's -10 veto for 1.6. An unfortunate consequence of reverting this is that some of the broadcasting error messages get worse, but they're still no worse than in 1.5.
* BUG: Fixed ticket #1767. Replaced assert with assert_ calls.Pearu Peterson2011-03-1110-227/+229
|
* TST: make the knownfail for TestClog unconditional on Windows.rgommers2011-03-111-6/+6
| | | | | | | | This keeps on coming up, and checking a few corner cases does not guarantee that other corner cases are also implemented according to the C99 standard. Was reported again by Christoph Gohlke for Python 2.7 and 3.2 on 64-bit Windows.
* TST: Py3K: fix bytes/string test failure in numpy.random.bytes() test.rgommers2011-03-111-2/+3
|
* TST: fix ResourceWarning under Python 3.2rgommers2011-03-111-0/+1
|
* Merge remote branch 'upstream/master' into f2py-assumed-shapePearu Peterson2011-03-11161-12355/+41323
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * upstream/master: (310 commits) REL: add 1.6.0 release notes. DEP: remove deprecated np.lib.ufunclike.log2 function. DOC: fix typo in test guidelines. DEP: remove deprecated items from ma/core.py DEP: remove deprecated get_numpy_include. DEP: remove unique1d, setmember1d and intersect1d_nu. DEP: remove deprecated names in fftpack. DEP: remove deprecated methods sync() and close() from memmap. DEP: Update deprecation messages in genloadtxt with a version number. BLD: update C API version again after Mark's renaming of functions. DOC: Replace 'deprecated' with 'superceded' in a few places, fix a typo. STY: Remove a micro-optimization to make code more clear DOC: Add some missing documentation, hyper-link the iterator documentation API: Remove PyArray_FillWithZero from public API API: Rename the iterator function pointer types to be more consistent with NumPy convention STY: Work around lack of variadic macros in debug tracing API: Change iterator API parameters ndim and niter from npy_intp to int ENH: add Intel 64-bit C compiler. Closes #960. TST: fix two divide-by-zero test warnings. BUG: Broadcast shape was backwards in error message (Ticket #1762) ...
| * REL: add 1.6.0 release notes.rgommers2011-03-112-7/+94
| |
| * DEP: remove deprecated np.lib.ufunclike.log2 function.rgommers2011-03-112-54/+1
| |
| * DOC: fix typo in test guidelines.rgommers2011-03-111-1/+1
| |
| * DEP: remove deprecated items from ma/core.pyrgommers2011-03-112-113/+68
| | | | | | | | | | | | | | | | | | | | The following are removed: - MaskedArray.raw_data method - MaskedArray flag keyword - make_mask flag keyword - allclose fill_value keyword Also change some assert's to assert_().
| * DEP: remove deprecated get_numpy_include.rgommers2011-03-113-10/+4
| |
| * DEP: remove unique1d, setmember1d and intersect1d_nu.rgommers2011-03-114-188/+10
| |
| * DEP: remove deprecated names in fftpack.rgommers2011-03-112-22/+11
| |
| * DEP: remove deprecated methods sync() and close() from memmap.rgommers2011-03-112-16/+2
| |
| * DEP: Update deprecation messages in genloadtxt with a version number.rgommers2011-03-111-12/+14
| | | | | | | | | | Because the docstring was still using `skiprows` explicitly, that keyword can not yet be removed. Should be done for 2.0.
| * BLD: update C API version again after Mark's renaming of functions.rgommers2011-03-111-1/+1
| |
| * DOC: Replace 'deprecated' with 'superceded' in a few places, fix a typo.Mark Wiebe2011-03-102-16/+17
| |
| * STY: Remove a micro-optimization to make code more clearMark Wiebe2011-03-101-1/+1
| |
| * DOC: Add some missing documentation, hyper-link the iterator documentationMark Wiebe2011-03-102-164/+348
| |
| * API: Remove PyArray_FillWithZero from public APIMark Wiebe2011-03-104-7/+10
| | | | | | | | | | | | This function is too specific. A function like PyArray_FillWithValue(PyArrayObject *ao, double value) would be better.
| * API: Rename the iterator function pointer types to be more consistent with ↵Mark Wiebe2011-03-1010-30/+30
| | | | | | | | | | | | | | NumPy convention 'NpyIter_IterNext_Fn' -> 'NpyIter_IterNextFunc *' 'NpyIter_GetCoords_Fn' -> 'NpyIter_GetCoordsFunc *'
| * STY: Work around lack of variadic macros in debug tracingMark Wiebe2011-03-103-118/+136
| |
| * API: Change iterator API parameters ndim and niter from npy_intp to intMark Wiebe2011-03-105-224/+227
| | | | | | | | | | These parameters are never large, so it's better to use a straight int instead of npy_intp, consistent with ndim in PyArrayObject as well.
| * ENH: add Intel 64-bit C compiler. Closes #960.rgommers2011-03-112-0/+23
| |
| * TST: fix two divide-by-zero test warnings.rgommers2011-03-112-4/+12
| |
| * BUG: Broadcast shape was backwards in error message (Ticket #1762)Mark Wiebe2011-03-102-1/+18
| |
| * BUG: Replace inline with NPY_INLINE.Charles Harris2011-03-101-2/+2
| |
| * Merge branch 'poisson-fix'Charles Harris2011-03-103-5901/+6535
| |\
| | * CYT: Regenerate mtrand.c file.Charles Harris2011-03-101-5900/+6516
| | |
| | * TST: Add test for poisson exceptions.Charles Harris2011-03-101-1/+10
| | |
| | * ENH: Add check for maximum average allowed in poisson rng. OriginalCharles Harris2011-03-101-0/+9
| | | | | | | | | | | | implementation due to olsonse.
| * | BLD: Increase C API version. Necessary because new C API functions were added.rgommers2011-03-102-1/+4
| |/ | | | | | | This removes the MismatchCAPIWarning at the beginning of the build.
| * Merge branch 'pandas-fix'Charles Harris2011-03-092-9/+72
| |\
| | * ENH: Make discover_dimensions pass thru all errors in list/mappingCharles Harris2011-03-082-25/+39
| | | | | | | | | | | | processing except KeyError. In the latter case an object is forced.
| | * STY: Remove uneeded stdio.h include.Charles Harris2011-03-081-1/+0
| | |
| | * DOC: Make clear that class in test breaks the sequence protocol.Charles Harris2011-03-081-3/+9
| | |
| | * BUG: Fix cut and paste error.Charles Harris2011-03-081-10/+14
| | |
| | * DOC: Improve the content of a comment.Charles Harris2011-03-081-5/+7
| | |
| | * TST: Add test for robustness with non-sequence detected as sequence.Charles Harris2011-03-081-0/+14
| | |
| | * ENH: Make comment more informative.Charles Harris2011-03-071-2/+8
| | |
| | * Make a failed sequence access error set the object creation flag.Charles Harris2011-03-071-0/+2
| | |
| | * BUG: Preliminary fix for ticket #1757.Charles Harris2011-03-071-2/+18
| | |