summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Collapse)AuthorAgeFilesLines
* Do not use eye in numpy.core tests.David Cournapeau2009-09-161-3/+3
|
* Move view tests using matrix from core into matrx module.David Cournapeau2009-09-162-14/+16
|
* Move linspace and logspace into core.David Cournapeau2009-09-166-192/+205
|
* Import issubdtype from numpy.core directly so that testing.utils does not ↵David Cournapeau2009-09-162-4/+6
| | | | depend on numpy.lib.
* Move matrix class into its own module.David Cournapeau2009-09-1615-12/+56
|
* ENH: Fix some more uninitialized vars.David Cournapeau2009-09-164-21/+55
|
* ENH: fix a few unused/missing initialized warnings.David Cournapeau2009-09-1610-5/+61
|
* Put 'internally public' datetime functions in _datetime header.David Cournapeau2009-09-163-0/+21
| | | | We use _datetime.h to avoid clashes with python datetime.h
* BUG: fix separate compilation mode with distutils.David Cournapeau2009-09-161-0/+1
| | | | | datetime.c was not included in setup.py for multiarray in the case of separate compilation, hence missing symbols.
* BUG: fix #1194.David Cournapeau2009-09-161-4/+4
|
* Remove useless f2py debug print.David Cournapeau2009-09-151-2/+0
|
* Use hashlib instead of md5 if available in code generator.David Cournapeau2009-09-151-4/+9
|
* BUG: fix clib install directory for scons command.David Cournapeau2009-09-141-1/+7
|
* Start adding library options for scons option.David Cournapeau2009-09-141-1/+22
|
* Re-indent scons command options.David Cournapeau2009-09-141-20/+20
|
* Further whitespace/tab fixes.David Cournapeau2009-09-141-3/+3
|
* Move scons call command line building into its own private function.David Cournapeau2009-09-141-71/+75
|
* Fix tab/space issue in scons command.David Cournapeau2009-09-141-3/+3
|
* Do not import pyrex in distutils unless there are some pyrex source files.David Cournapeau2009-09-141-7/+9
|
* Style cleanups.Charles Harris2009-09-141-458/+492
| | | | | | | | | 1) Remove hard tabs. 2) Remove trailing white space. 3) Reformat comments 4) Move datetime code. The datetime code probably needs some reorganization.
* Remove trailing comma from enum (for c89-ification).Pauli Virtanen2009-09-121-1/+1
|
* BUG: we were protecting c++ and fortran compiler path twice, which made ↵David Cournapeau2009-09-091-2/+2
| | | | scons interpret the path as target.
* Tell scons whether we are in bypass mode or not.David Cournapeau2009-09-091-0/+1
|
* Do not pass compiler path options to scons if they were not set.David Cournapeau2009-09-091-3/+6
|
* Require numscons 0.11 or above.David Cournapeau2009-09-091-2/+2
|
* Add a bypass option to scons command.David Cournapeau2009-09-091-11/+18
| | | | | | | We sometimes want to bypass distutils compiler detection, and the bypass option tells the scons command to do exactly that. The compiler options are simply passed directly to scons, which will then try to to detect the compiler from there.
* Handle None in protect path.David Cournapeau2009-09-091-3/+6
|
* Add user options for compilers in scons command.David Cournapeau2009-09-091-2/+16
| | | | | | When removing build_ext options, we removed the compiler options as well. We add the compiler options back, and treat C, C++ and Fortran compilers as separate.
* Always set up scons_* compilers, and use those when building the scons ↵David Cournapeau2009-09-091-9/+19
| | | | command call.
* Do not reuse build_ext options - most do not make sense for scons command.David Cournapeau2009-09-091-13/+12
|
* Remove infunc imports.David Cournapeau2009-09-091-3/+10
|
* Refactor numscons check in scons command.David Cournapeau2009-09-091-26/+31
|
* Move compiler initialization into their own private functions.David Cournapeau2009-09-091-45/+47
|
* Move import at the top of the file.David Cournapeau2009-09-091-4/+4
|
* Optimize ma.masked_invalid (on a suggestion from E.Firing)pierregm2009-09-081-3/+6
|
* BUG: fix separate compilationDavid Cournapeau2009-09-073-41/+40
| | | | | move datetime-related fmin/fmax macros to loops.h from loops.c, as only loops.h.src is seen during separate compilation.
* Style change in ufunc loops decl.David Cournapeau2009-09-071-3/+3
|
* Fix DATETIME and TIMEDELTA buggy loops declarations.David Cournapeau2009-09-072-61/+46
|
* Rename loops.h.src.unused as we actually need it.David Cournapeau2009-09-071-0/+0
|
* Add test for ticket #1217.Charles Harris2009-09-031-0/+7
|
* Fix for ticket #1217, crash in lexsort.Charles Harris2009-09-031-8/+11
|
* Add support for MIPS.Thanks go to r0bertz.Charles Harris2009-09-032-2/+8
|
* BUG: fix the detection of architectures on OS X.Robert Kern2009-09-021-4/+3
|
* Fix separate compilation mode after datetime merge.David Cournapeau2009-08-312-0/+5
|
* Add copysign declaration for ufunc loop.David Cournapeau2009-08-312-2/+14
|
* Add datetime ufunc declarations.David Cournapeau2009-08-312-295/+652
|
* * Bugfix for ticket #1207pierregm2009-08-302-1/+9
|
* Fix C99-style variable declaration.David Cournapeau2009-08-301-1/+2
|
* Fix #1168: fix functionality broken in r7132, and make get_package_path more ↵Pauli Virtanen2009-08-291-3/+12
| | | | robust
* Do not try to include site.cfg if it does not exist.David Cournapeau2009-08-291-1/+3
|