summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* Document constants in numpy.doc.constantsPauli Virtanen2009-02-141-0/+80
* Move (un)packbits docstrings to add_newdocs.py. Fix typos.Pauli Virtanen2009-02-142-35/+44
* More add_newdocs entries, and make add_newdoc capable of adding docs also to ...Pauli Virtanen2009-02-144-242/+741
* Include C99 math compatbility layer in multiarray - isnan and co needed by nu...David Cournapeau2009-02-141-0/+4
* Remove leftover in TestIO.David Cournapeau2009-02-141-1/+1
* Fix typo in multiarray tests.David Cournapeau2009-02-141-2/+2
* Merge fix_float_format branch into the trunk.David Cournapeau2009-02-148-161/+964
|\
| * Initialize a variable properlyPauli Virtanen2009-01-121-0/+2
| * Recognize POSIX nan/inf representations in NumPyOS_strtod.Pauli Virtanen2009-01-125-49/+150
| * More tests for fromstring, fromfile, tostring, tofile.Pauli Virtanen2009-01-122-4/+60
| * Do not use strncpy but strcpy: we know the string sizes, and strncpy sucks an...David Cournapeau2009-01-011-3/+3
| * Remove some tabs.David Cournapeau2009-01-011-11/+11
| * Rewrite NumPyOS_ascii_strtod to not assume that the 'foreign' decimal point i...Pauli Virtanen2008-12-301-17/+25
| * Reindent and pep-7ize npy_format.cPauli Virtanen2008-12-301-220/+226
| * Speed up NumPyOS_ascii_strtodPauli Virtanen2008-12-301-5/+7
| * Implement NumPyOS_ascii_strtod to work around a bug in PyOS_ascii_strtod. Use...Pauli Virtanen2008-12-302-5/+44
| * Implement NumPyOS_ascii_ftof, and use it instead of fscanf to make fromfile l...Pauli Virtanen2008-12-302-4/+181
| * Improve fromfile/fromstring test coverage, and add tests to check locale-inde...Pauli Virtanen2008-12-302-100/+107
| * Fix conditional for min number of digits in exponent for float formatting.David Cournapeau2008-12-301-1/+1
| * Use reference for inf/nan.David Cournapeau2008-12-301-3/+9
| * Fix single precision complex/real redirected print tests.David Cournapeau2008-12-301-2/+22
| * Fix complex reference.David Cournapeau2008-12-301-2/+2
| * Merged revisions 6271 via svnmerge from David Cournapeau2008-12-301-21/+17
| |\
| * \ Merged revisions 6268 via svnmerge from David Cournapeau2008-12-301-9/+9
| |\ \
| * \ \ Merged revisions 6266 via svnmerge from David Cournapeau2008-12-301-1/+1
| |\ \ \
| * \ \ \ Merged revisions 6265 via svnmerge from David Cournapeau2008-12-301-1/+1
| |\ \ \ \
| * \ \ \ \ Merged revisions 6263 via svnmerge from David Cournapeau2008-12-301-5/+13
| |\ \ \ \ \
| * \ \ \ \ \ Merged revisions 6260-6261 via svnmerge from David Cournapeau2008-12-301-26/+9
| |\ \ \ \ \ \
| * \ \ \ \ \ \ Merged revisions 6258 via svnmerge from David Cournapeau2008-12-301-2/+9
| |\ \ \ \ \ \ \
| * \ \ \ \ \ \ \ Merged revisions 6256 via svnmerge from David Cournapeau2008-12-301-2/+10
| |\ \ \ \ \ \ \ \
| * | | | | | | | | Force at least 3 digits for the exponent on windows and python < 2.6.David Cournapeau2008-12-301-0/+5
| * | | | | | | | | Merged revisions 6253 via svnmerge from David Cournapeau2008-12-301-1/+1
| |\ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ Merged revisions 6251 via svnmerge from David Cournapeau2008-12-301-4/+4
| |\ \ \ \ \ \ \ \ \ \
* | | | | | | | | | | | Trust user's specification of MACOSX_DEPLOYMENT_TARGET [patch by BrianStefan van der Walt2009-02-121-14/+22
* | | | | | | | | | | | Add multiple-field access by making a copy of the array and filling with the ...Travis Oliphant2009-02-123-1/+58
* | | | | | | | | | | | * MaskedArray.__array_wrap__ : forces the domain (if any) to a ndarray (fill ...pierregm2009-02-112-3/+13
* | | | | | | | | | | | Fix hyphen (patch from debian package).David Cournapeau2009-02-101-10/+10
* | | | | | | | | | | | * prevent modifications to the mask to be back-propagated w/ __array_wrap__pierregm2009-02-102-1/+19
* | | | | | | | | | | | Fix #955: fix errobj leak in scalarmath floating point error handlingPauli Virtanen2009-02-092-3/+21
* | | | | | | | | | | | (no commit message)pierregm2009-02-071-4/+4
* | | | | | | | | | | | MaskedArray.resize : systematically raise a TypeError exception, as a masked ...pierregm2009-02-072-23/+40
* | | | | | | | | | | | Fix another bug, see last commit.Pearu Peterson2009-02-061-1/+2
* | | | | | | | | | | | Fix a bug: python system_info.py failed because _pkg_config_info defined sect...Pearu Peterson2009-02-061-2/+3
* | | | | | | | | | | | Removed an unneccessary return statement in a unit test.Travis Oliphant2009-02-061-1/+0
* | | | | | | | | | | | Avoid re-creating the sequence when there is only one field in the regular ex...Travis Oliphant2009-02-061-4/+9
* | | | | | | | | | | | Issue #957:Alan McIntyre2009-02-052-16/+221
* | | | | | | | | | | | * genfromtxt : Fixed when a dtype involving objects is explicitly given. Rai...pierregm2009-02-054-6/+77
* | | | | | | | | | | | test_upgrademapper : got rid of the dateutil importpierregm2009-02-041-10/+11
* | | | | | | | | | | | * test__iotools : prevent test_upgrademapper if dateutil is not installedpierregm2009-02-042-8/+11
* | | | | | | | | | | | * Make sure that StringConverter.update sets the type to object if it can't d...pierregm2009-02-032-2/+18