summaryrefslogtreecommitdiff
path: root/numpy/core/src/arrayobject.c
Commit message (Collapse)AuthorAgeFilesLines
* Put multiarray modul sources into separate directory.David Cournapeau2009-04-301-3265/+0
|
* forgot to move comments attached to ctor code.David Cournapeau2009-04-301-41/+0
|
* Put object type conversion into separate file.David Cournapeau2009-04-301-336/+0
|
* Put casting functions into separate file.David Cournapeau2009-04-301-806/+0
|
* Put array construction functions into separate file.David Cournapeau2009-04-301-2256/+4
|
* Put array methods in separate file.David Cournapeau2009-04-301-5/+7
|
* Put sequence protocol in separate file.David Cournapeau2009-04-301-138/+1
|
* Put number protocol and array attributes get/set in separate files.David Cournapeau2009-04-301-1673/+1
|
* Put mapping protocol in separate file.David Cournapeau2009-04-301-995/+1
|
* Fix numscons build for platforms without wide character unicode support.David Cournapeau2009-04-301-5/+5
|
* Put array iterator code in separate source file.David Cournapeau2009-04-301-2397/+3
|
* Put array descriptor in separate file.David Cournapeau2009-04-301-1162/+1
|
* Put PyArrayFlagsObject in separate file.David Cournapeau2009-04-301-480/+0
|
* Enable separate compilation of existing files for multiarray module.David Cournapeau2009-04-301-64/+28
|
* Tag any function/typedef/variable exported through the C-API with ↵David Cournapeau2009-04-301-79/+79
| | | | NPY_NO_EXPORT instead of static.
* Simplify regression test and make error message for oversized array moreCharles Harris2009-04-091-1/+1
| | | | informative.
* Nuke obsolete register keyword in c sources.Charles Harris2009-04-091-17/+19
|
* Fix ticket #1080 and add regression test. Do some small cleanup in the process.Charles Harris2009-04-091-8/+16
|
* BUG: Fix #1061.David Cournapeau2009-03-231-3/+32
|
* Revert "Fix wrong formatting: Py_ssize_t vs npy_intp."David Cournapeau2009-03-131-1/+1
| | | | NPY_SSIZE_FORMAT is for parsing from PyArg_* functions, not for printf.
* Fix wrong formatting: Py_ssize_t vs npy_intp.David Cournapeau2009-03-121-1/+1
|
* More unsigned comparison warning fixes.David Cournapeau2009-03-091-1/+1
|
* Apply patch from ticket #1040 fixing some 64 bit issues. Thanks toCharles Harris2009-03-081-49/+40
| | | | jmiller.
* Coding style cleanup. Remove trailing whitespace.Charles Harris2009-03-051-3/+5
|
* Minor changes to DEV_README + fix to a 64-bit issue.Travis Oliphant2009-03-041-6/+6
|
* Change indentation of switch statements.Charles Harris2009-02-201-473/+473
|
* Coding style cleanups.Charles Harris2009-02-201-940/+1166
|
* Coding style cleanups.Charles Harris2009-02-191-146/+193
|
* Coding style cleanups.Charles Harris2009-02-191-373/+493
|
* Coding style cleanups.Charles Harris2009-02-181-374/+520
|
* Coding style cleanups.Charles Harris2009-02-181-639/+911
|
* Add multiple-field access by making a copy of the array and filling with the ↵Travis Oliphant2009-02-121-1/+29
| | | | selected fields.
* Fix missing initializers warnings.David Cournapeau2008-10-081-66/+145
|
* Use NPY_UNUSED in numpy.core sources.David Cournapeau2008-10-081-9/+9
|
* Fix ticket #925Travis Oliphant2008-10-031-0/+69
|
* Revert r5698, r5699, and r5702 until build problems are fixed.Charles Harris2008-08-271-3/+0
| | | | Fix ticket #878 differently.
* Add a trunc function in umath module.David Cournapeau2008-08-251-0/+3
|
* reverting C-API change from r5626Jarrod Millman2008-08-221-7/+6
|
* Fix ticket #674.Travis Oliphant2008-08-101-2/+5
|
* *Full recompile needed*: changed the name of hasobject structure member to ↵Travis Oliphant2008-08-101-6/+7
| | | | flags in the PyArray_Descr structure and increased it's size to int
* Fix ticket #877 along with other bugs not yet reported for data-types with ↵Travis Oliphant2008-08-061-2/+11
| | | | titles.
* Fix ticket #850. Thanks to Michael Abbott for the patch.Charles Harris2008-07-161-2/+2
|
* Make deprecation messages more informative.Charles Harris2008-07-141-8/+4
|
* Move DEPRECATE macro to ndarrayobject.h.Charles Harris2008-07-131-6/+0
| | | | | | Deprecate PyArray_As1D. Remove deprecated functions from fftpack_listmodule.c. There may need to be further fixes on 64 bit platforms, we will see.
* Fix Deprecation warnings for python versions < 2.5.xCharles Harris2008-07-131-2/+8
|
* Deprecate PyArray_FromDims and PyArray_FromDimsAndDataAndDescr.Charles Harris2008-07-131-15/+21
| | | | There will be warnings issued in np.test() until fftpack is fixed.
* Replace snprintf with PyOS_snprintf.Charles Harris2008-07-121-7/+8
| | | | There remain four occurrences of sprintf that should be replaced.
* Coding style cleanups.Charles Harris2008-07-121-12/+15
|
* Fix missing return value, closes ticket #813.Charles Harris2008-06-071-6/+7
|
* Fix more in ticket #791.Travis Oliphant2008-06-051-16/+33
|