summaryrefslogtreecommitdiff
path: root/numpy/core/src/scalarmathmodule.c.src
Commit message (Expand)AuthorAgeFilesLines
* WRN: Fix unused variable compiler warnings in scalarmathmodule.c.src.Charles Harris2012-04-211-84/+227
* DEP: Update all the '#define NPY_NO_DEPRECATED_API' instances to beMark Wiebe2012-04-061-1/+1
* UPD: Various fixes, Remove #define NPY_NO_PREFIX from files in core.Charles Harris2012-02-051-1/+1
* UPD: Use prefixed macros in numpy/core/src/scalarmathmodule.c.src.Charles Harris2012-02-041-269/+511
* UPDATE: Replace macros in old_defines.h by new.Charles Harris2012-02-041-2/+2
* STY: core/src - replace macros in old_defines.h with new versions.Charles Harris2012-02-041-6/+6
* ENH: core: Make scalar math module leave out the deprecated headerMark Wiebe2011-07-061-0/+2
* BUG: core: make complex division by zero to yield inf properly (#1776)Pauli Virtanen2011-04-021-4/+11
* WRN: core: Remove many warnings gcc produces with stricter flagsMark Wiebe2011-01-291-4/+4
* ENH: ufunc: Change object/reference handling code to treat NULL as Py_None mo...Mark Wiebe2011-01-211-4/+6
* BUG: core: Some fixes and clean up of floating point exception codeMark Wiebe2010-12-031-10/+10
* ENH: core: Create half/float16 data typeMark Wiebe2010-12-011-87/+161
* BUG: core: Make scalar output volatile to prevent incorrect optimizer reorder...Mark Wiebe2010-11-151-3/+9
* BUG: core: adjust ComplexWarning location frame up by one, so that the warnin...Pauli Virtanen2010-10-161-1/+1
* BUG: core: fix uint64 -> Python int cast (fixes #1287)Pauli Virtanen2010-10-101-6/+2
* BUG: core: handle errors from PyErr_Warn for ComplexWarningPauli Virtanen2010-10-081-9/+18
* ENH: core: emit ComplexWarning also when array scalars are cast to real/intPauli Virtanen2010-09-211-4/+40
* ENH: core: make npy_3kcompat.h header public, for easier usage in ScipyPauli Virtanen2010-07-171-1/+1
* ENH: Remove some unused variable warnings.Charles Harris2010-04-251-3/+1
* ENH: get rid of #warning directives, either by fixing the issue or changing t...Pauli Virtanen2010-04-041-10/+0
* 3K: Some remaining Py_TYPE issuesPauli Virtanen2010-02-201-1/+1
* BUG: Fix bugs in complex pow (fixes #1313)Pauli Virtanen2009-12-071-1/+1
* 3K: module inits for all core modulesPauli Virtanen2009-12-061-3/+33
* 3K: core: handle removed tp_compare and PyObject_ComparePauli Virtanen2009-12-061-4/+54
* 3K: core: adapt to changes in PyNumberMethodsPauli Virtanen2009-12-061-2/+40
* Cleanup scalarmathmodule.c.src.Charles Harris2009-10-201-3/+3
* Make the type cast clearer + comment.David Cournapeau2009-03-091-1/+5
* More unsigned comparison warning fixes.David Cournapeau2009-03-091-0/+7
* Apply patch in ticket #826 to fix problem with subtypes.Charles Harris2009-03-081-7/+11
* Coding style cleanups.Charles Harris2009-02-211-208/+311
* Fix #955: fix errobj leak in scalarmath floating point error handlingPauli Virtanen2009-02-091-2/+8
* Fix missing initializers warnings.David Cournapeau2008-10-081-1/+1
* Use NPY_UNUSED in numpy.core sources.David Cournapeau2008-10-081-5/+12
* Trial fix to ticket #698Travis Oliphant2008-08-231-1/+41
* Fix typo reported in #637.Travis Oliphant2008-04-031-1/+1
* Fix whitespace to conform to Python 3000 convention.Stefan van der Walt2007-08-211-224/+224
* Convert large integer scalars to long instead of to int [patch byStefan van der Walt2007-07-271-5/+29
* Propagate changes made to umathmodule.c to fix the problem with division and ...Travis Oliphant2007-05-171-0/+7
* Fix ticket #463 wherein hex and oct did not work for values that could not be...Travis Oliphant2007-04-011-2/+4
* Fix warnings found by Intel compiler due to unused variables that were set. ...Travis Oliphant2006-12-021-2/+1
* Fix some compiler errors.Travis Oliphant2006-11-171-0/+4
* Add print and log facilities to error handling and change the default error m...Travis Oliphant2006-10-191-2/+6
* Fix white-space issues.Travis Oliphant2006-08-191-46/+46
* Fix Python 2.5 compatibility to work with new b3 releaseTravis Oliphant2006-08-141-17/+6
* fix warning about comparisions in scalarmathmodule.c.srccookedm2006-07-101-1/+1
* Apply npy_ and NPY_ prefixes to all C-API names that don't already have PyArr...Travis Oliphant2006-07-081-1/+1
* Speed up mod function using fmod and add use_pythonmath and use_scalarmath fu...Travis Oliphant2006-07-061-3/+106
* Get rid of silly returns in scalar-math module which was preventing it's work...Travis Oliphant2006-07-061-3/+4
* Make import_array and import_ufunc MACROS again.Travis Oliphant2006-06-201-2/+2
* Fix abs(<complexscalar>) to return realTravis Oliphant2006-06-161-7/+8