summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Collapse)AuthorAgeFilesLines
* BLD: add support for the new X11 directory structure on Ubuntu & co.Raymond Roberts2011-10-291-1/+8
|
* BUG: Fix maximum/minimum for object arrays in Python 3.Charles Harris2011-10-233-26/+64
| | | | Use PyObject_RichCompareBool instead of PyObject_Cmp.
* STY: Some coding style fixups.Charles Harris2011-10-231-14/+22
|
* ENH: Explicitly coded argmin for timedeltaBen Root2011-10-235-19/+341
|
* ENH: Add 'pgfortran' as a valid compiler in the Portland Grouptim cera2011-10-231-10/+10
| | | | suite of fortran compilers. Adjust the version string command.
* BLD: fix up detection of Intel CPU on OS X in system_info.py.Ralf Gommers2011-10-171-3/+5
|
* ENH: add context manager for NpzFile class.David Cournapeau2011-10-101-0/+13
|
* DOC: mention that NpzFile instances must be closed.David Cournapeau2011-10-101-1/+13
|
* BUG: core: fix compilation for UCS-narrowPauli Virtanen2011-10-082-1/+2
|
* BUG: Fix version comparison bug on Py25.Han2011-10-041-2/+2
|
* BUG: Fixes for Python3 and some further enhancements.hangenuit@gmail.com2011-10-041-17/+19
|
* ENH: Incorporated review advice and changed macro hack to MinGW hint.hangenuit@gmail.com2011-10-042-28/+7
| | | | | | | | When doing the typedef change, it conflicted with existing typedefs. I realized that MinGW did not know which MSVC runtime it would link with, but it had conditional definitions for MSVC 8 and up, which can be activated by defining __MSVCRT_VERSION__. So I added it to the compiler macros, which made the fallback hack and extra typedef unnecessary.
* BUG: Add another preprocessor statement for 64-bits fallback mechanism.hangenuit@gmail.com2011-10-042-1/+22
|
* BUG: DLL finder should also look in WinSxS directory.hangenuit@gmail.com2011-10-041-2/+13
|
* BUG: Also build MSVC debug library if MINGW_USE_CUSTOM_MSVCR is defined ↵hangenuit@gmail.com2011-10-041-10/+6
| | | | (best effort).
* ENH: In debug mode, do not use customized MSVC runtime library.Han2011-10-041-0/+3
|
* ENH: Clean up symbol definition file.Han2011-10-041-0/+3
|
* ENH: Some commments. Skip customization for MSVC < 8.0.Han2011-10-041-3/+14
|
* ENH: Use customized MSVC runtime library if present.Han2011-10-041-0/+6
|
* ENH: Generate custom MSCV runtime library for mingw32.Han2011-10-041-0/+46
|
* BUG: Fixing reference counting bug in array comparisonChristopher L. Farrow2011-10-021-1/+1
|
* BUG: fixing reference leak from the numpy refactor @ 4c21144Christopher L. Farrow2011-10-021-0/+1
|
* BUG: porting bugfix from refactor @ 708d6beChristopher L. Farrow2011-10-021-0/+1
|
* BUG: porting bugfix from refactor @ 3da77dfChristopher L. Farrow2011-10-021-0/+3
|
* BUG: Fixed reference count bug where scalar value assignment by field to an ↵Christopher L. Farrow2011-10-021-0/+1
| | | | array would increment the reference count of the scalar.
* BUG: Fixing reference leak in datetime metadata retrievalChristopher L. Farrow2011-10-021-0/+1
|
* BUG: fixed reference leak when new record dtype squashed old one in sortChristopher L. Farrow2011-10-021-0/+1
|
* BUG: fixed reference counting bug in PyArray_FromScalar that occurs when ↵Christopher L. Farrow2011-10-021-0/+1
| | | | using an extended dtype
* BUG: Fixed reference leak when gen_arraytype_subscript failsChristopher L. Farrow2011-10-021-0/+1
|
* BUG: fixing reference leak in OBJECT_fillChristopher L. Farrow2011-10-021-1/+3
|
* PyArray_FromBuffer: Allow creating arrays from empty buffers or empty slices.Hrvoje Niksic2011-10-012-3/+6
|
* BUG: Attempt Y2038 fix, and restrict local timezone parsing to 1970 and ↵Mark Wiebe2011-10-011-37/+77
| | | | | | | later, because of Win32 On MS Windows, dates earlier than 1970 cause mktime to error. This patch also applies to parsing the same Y2038 hack that was done for printing.
* BUG: Attempt to fix the Y2038 problem parsing dates >= 2038Mark Wiebe2011-10-011-70/+167
| | | | | | Also incorporated part of Han Genuit's pull request #23, to try and reduce the difficulty dealing with the merge conflict that will result from these concurrent changes
* TST: Add tests for the Y2038 problemMark Wiebe2011-10-011-0/+18
| | | | | This only seems to be cropping up on 32-bit Linux, where time_t is 32 bits, and there appears to be no 64-bit time_t extension like on Windows.
* BUG: Remove floor_divide support for timedelta64 // timedelta64Mark Wiebe2011-10-013-3/+4
|
* TST: Add true_divide and floor_divide tests for the mm_d timedelta caseMark Wiebe2011-10-011-0/+3
|
* STY: Fix a few cases of spaces not following conventionsMark Wiebe2011-10-012-2/+2
|
* BUG: Add %lld exception for Python 3.1 as wellMark Wiebe2011-10-011-6/+14
|
* WRN: Remove many warnings when building at a higher warning levelMark Wiebe2011-10-0118-175/+161
| | | | | This includes warnings about shadowed variables, some bad casts, and others. Fixing these warnings also fixed a memory leak in one instance.
* BUG: datetime: Fix timedelta / timedelta -> float64 on Python 3Mark Wiebe2011-10-013-6/+12
|
* BUG: datetime: Fix str() function of datetime arraysMark Wiebe2011-10-011-3/+18
| | | | | Done by making the unit given by datetime_data be a string instead of bytes in Python 3.
* BUG: datetime: Make datetime_as_string produce a UNICODE array instead of ↵Mark Wiebe2011-10-015-28/+45
| | | | STRING array on Python3
* BUG: Fix polynomial tests.Stefan van der Walt2011-09-141-2/+2
|
* ENH: Add weights and covariance estimate to standard polyfit.Travis E. Oliphant2011-09-132-20/+72
|
* TST: skip umath complex tests on all platforms except linux. Closes #1926.Rui Pereira2011-09-081-5/+1
|
* BUG: Fix reference leak in PyArray_DTypeFromObjectHan2011-09-081-0/+1
|
* MISC: cloadable is not useful anymore.David Cournapeau2011-09-081-1/+1
|
* Merge pull request #149 from 87/ref-fixMark2011-08-312-2/+2
|\ | | | | Bugfix in PyArray_SetBaseObject
| * BUG: PyArray_SetBaseObject didn't set proper base when collapsing views872011-08-312-2/+2
| |
* | FIX: Make tril/triu return the same dtype as the original array.Fabian Pedregosa2011-08-312-2/+14
| | | | | | | | | | | | | | This should fix: * http://projects.scipy.org/numpy/ticket/1848 * http://projects.scipy.org/scipy/ticket/1449