summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* BUG: DOC: fix invalid vdot documentationPauli Virtanen2010-10-141-14/+9
|
* Added tests to test_eq_w_None (bug #1493)pierregm2010-10-121-0/+12
|
* Revert "merging refs/remotes/origin/master into HEAD"pierregm2010-10-123-39/+2
| | | | | This reverts commit a14dd542532d383610c1b01c5698b137dd058fea, reversing changes made to 11ee694744f2552d77652ed929fdc2b4ccca6843.
* ENH - improved .gitignoreJarrod Millman2010-10-111-15/+68
|
* merging refs/remotes/origin/master into HEADpierregm2010-10-1170-1594/+1436
|\
| * BUG: core: richcompare must indicate undefined comparison via ↵Pauli Virtanen2010-10-112-15/+21
| | | | | | | | | | | | | | | | Py_NotImplemented (fixes #1491) The Python documentation indicates that the result from comparisons should be Py_NotImplemented when undefined, and there is no reason why not follow that also in array_richcompare.
| * BUG: lib: clean up ancient-Python era stuff from IndexExpression (#1196)Pauli Virtanen2010-10-112-11/+15
| |
| * ENH: lib: allow zip64 extensions in .npz files; allows > 2GBPauli Virtanen2010-10-101-4/+7
| |
| * ENH: lib: add savez_compressed function for saving compressed archivesPauli Virtanen2010-10-101-5/+40
| |
| * BUG: linalg: lstsq should always return real residuals (#937)Pauli Virtanen2010-10-102-14/+104
| |
| * BUG: io: close file handles immediately after use, where possible (#1517)Pauli Virtanen2010-10-101-72/+125
| |
| * BUG: core: fix duplicate name problems in dtype.names setting (#1598)Pauli Virtanen2010-10-102-7/+26
| |
| * BUG: core: fix uint64 -> Python int cast (fixes #1287)Pauli Virtanen2010-10-102-6/+6
| |
| * DOC: Update the testing guidelines.rgommers2010-10-102-14/+24
| | | | | | | | | | | | | | Things that are changed are: - use assert_() instead of plain assert, and explain why. - do not use "from numpy.testing import *" - explain #random directive for doctests
| * BUG: core: handle errors from PyErr_Warn for ComplexWarningPauli Virtanen2010-10-083-15/+29
| |
| * DOC: Change mention of SVN to Git.rgommers2010-10-081-2/+2
| |
| * BUG: f2py: fix building modules via 'f2py -c' (broken in e6eafde)Pauli Virtanen2010-10-061-2/+4
| |
| * BUG: core: use #if check instead of #ifdef in checking HAVE_DECL_ISFINITE ↵Pauli Virtanen2010-10-062-2/+21
| | | | | | | | | | | | | | (ticket #1625) Python #defines HAVE_DECL_ISFINITE 0 when the function is not available, so the proper check to do is #if.
| * Added Portland Group compiler support for Darwin platform (thanks to Josef ↵Pearu Peterson2010-10-062-4/+23
| | | | | | | | Koller).
| * BUG: core: fix compilation with Solaris 10 / Sun Studio 12.1 (ticket #1626)Pauli Virtanen2010-10-061-3/+3
| |
| * DOC: regenerate gitwash docsPauli Virtanen2010-10-0417-0/+871
| |
| * DOC: add developer docs based on gitwashPauli Virtanen2010-10-045-1/+23
| |
| * DOC: remove numpy.scipy.org -- it's now in a separate repositoryPauli Virtanen2010-10-0417-708/+0
| |
| * sphinxext: bump numpydoc versionPauli Virtanen2010-10-011-3/+3
| |
| * sphinxext: remove deprecated parts from numpydocPauli Virtanen2010-10-015-678/+3
| |
| * DOC: explicitly require Sphinx >= 1.0.1Pauli Virtanen2010-10-013-22/+8
| |
| * sphinxext: fix Other Parameters section parsing in docscrapePauli Virtanen2010-10-013-7/+79
| |
* | Add more tests to test_eq_w_None (bug #1493)pierregm2010-10-113-2/+39
|/
* Merge branch 'master' into fixesCharles Harris2010-09-251-2/+2
|\
| * BUGLET: Need "\\n" in string template.Charles Harris2010-09-231-2/+2
| |
* | ENH: Update absoft fortran flags for v11.0.Charles Harris2010-09-251-1/+3
|/
* FIX: And add missing \n for error message.Charles Harris2010-09-221-1/+1
|
* BUG: Fix previous fix to numpy/g2py/setup.py.Charles Harris2010-09-221-1/+1
|
* BUG: Fix generated f2py bootstrap script to work with python 3k.Charles Harris2010-09-221-2/+2
| | | | Thanks to Lisandro Dalcin.
* BUG: core: ensure cfloat and clongdouble scalars have a __complex__ method, ↵Pauli Virtanen2010-09-212-0/+39
| | | | so that complex(...) cast works properly (fixes #1617)
* ENH: core: emit ComplexWarning also when array scalars are cast to real/intPauli Virtanen2010-09-212-5/+52
|
* FEAT: add C module and f2py fortran wrapper output customization from ↵David Cournapeau2010-09-173-6/+25
| | | | command line.
* DOC: Point the npy NEP to the git repo.Stefan van der Walt2010-09-161-3/+2
|
* DOC: Remove more SVN references.Stefan van der Walt2010-09-164-8/+9
|
* DOC: Refer to git repo in release notes.Stefan van der Walt2010-09-161-12/+13
|
* Merge remote branch 'charris/misc'Charles Harris2010-09-151-0/+19
|\
| * ENH: Add .gitignore file.Charles Harris2010-09-151-0/+19
| |
* | * fixed the behavior of {{{skip_footer}}} in {{{genfromtxt}}} when some ↵pierregm2010-09-132-16/+47
|/ | | | invalid lines are present (bug #1593)
* * ma.core._print_templates: switched the keys 'short' and 'long' to ↵pierregm2010-09-132-7/+39
| | | | | | 'short_std' and 'long_std' respectively (bug #1586) * Fixed incorrect broadcasting in ma.power (bug #1606)
* * fixed 'flatten_dtype' to support fields w/ titles (bug #1591). Thx to ↵pierregm2010-09-132-13/+35
| | | | | | Stefan vdW for the fix. * added a unittest for flatten_dtype
* BUG: distutils: make is_free_format et al. not choke on non-ascii Fortran filesPauli Virtanen2010-09-111-3/+5
|
* BUG: core: fix npy_PyFile_Check implementation on Py3Pauli Virtanen2010-09-111-16/+7
|
* BUG: core: on Python3, seek file handle to the current position in ↵Pauli Virtanen2010-09-112-0/+18
| | | | npy_PyFile_Dup (fixing #1610)
* BUG: core: fix a missing return branch in npy_3kcompat.hPauli Virtanen2010-09-111-0/+1
|
* BUG: core: sync Python 3 file handle position in tofile/fromfile (fixes #1610)Pauli Virtanen2010-09-114-19/+90
|