summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Collapse)AuthorAgeFilesLines
* Py3k: make core setup.py py3k-importable.David Cournapeau2009-12-032-9/+13
|
* Make f2py setup.py runnable under python3.David Cournapeau2009-12-031-1/+1
|
* Fix callable in misc_utils.David Cournapeau2009-12-031-2/+2
|
* python3 changes function object attributes names.David Cournapeau2009-12-031-2/+12
|
* Fix print statements in numpy.distutils.environmentDavid Cournapeau2009-12-032-5/+5
|
* Py3k: make fcompiler module py3k-importable.David Cournapeau2009-12-031-12/+16
|
* Fix print statements in fcompiler for python3.David Cournapeau2009-12-0315-25/+25
|
* Py3k: make scons command py3k importable.David Cournapeau2009-12-031-2/+5
|
* Py3k: make template generators py3k importable.David Cournapeau2009-12-032-9/+14
|
* Make build_src and build_clib python3 importable.David Cournapeau2009-12-032-7/+6
|
* Py3k: make system_info importable from py3k.David Cournapeau2009-12-031-4/+11
|
* Fix print/repr/raise python3 incompatibilities in system_info and build_ext ↵David Cournapeau2009-12-032-6/+6
| | | | command.
* Py3k: make mingw32compiler module py3k importable.David Cournapeau2009-12-031-6/+9
|
* Py3k: make config command py3k importable.David Cournapeau2009-12-031-5/+8
|
* Py3k: fix unixccompiler + exec_command exception/print stmts.David Cournapeau2009-12-033-20/+32
|
* numpy.distutils.core importable from py3.David Cournapeau2009-12-031-5/+5
|
* Py3k fix for misc_util.David Cournapeau2009-12-031-24/+27
|
* Make numpy.distutils.log importable from python3.David Cournapeau2009-12-031-4/+8
|
* Fix raise + print stmts in ccompiler.David Cournapeau2009-12-032-24/+32
|
* Make top numpy __init__ importable from python3.David Cournapeau2009-12-031-2/+2
|
* Fix relative import in top numpy.distutils.David Cournapeau2009-12-031-12/+28
|
* Clean-up PyArray_EnsureArray so there is one return point.Travis Oliphant2009-12-031-13/+9
|
* Push memory-leak fix to trunk.Travis Oliphant2009-12-031-4/+15
|
* Fix Ticket #1108 by initializing correctly the block of data corresponding ↵Travis Oliphant2009-12-021-1/+2
| | | | to the identity for the ufunc used during reduceat with a buffer.
* Port the fix for #1299 to the trunk and change trunk version to 1.5Travis Oliphant2009-12-022-4/+5
|
* TST: Add regression test for Ticket #1299 and clean-up test for non-buffered ↵Travis Oliphant2009-12-022-8/+30
| | | | structured array bug.
* BUG: fix numscons build, missing subst in _numpyconfig.hDavid Cournapeau2009-11-291-0/+2
|
* BUG: Fix extra declaration of _datetime_strings in descriptor.h when notCharles Harris2009-11-281-2/+0
| | | | doing separate compilations. It fails for vs2009 compiliation.
* Small cleanups in polynomial modules.Charles Harris2009-11-283-8/+10
|
* Fix documentation of array.Charles Harris2009-11-281-1/+1
|
* BUG: do not redefine SIZEOF_LONG in config.h if already defined in python ↵David Cournapeau2009-11-271-1/+6
| | | | headers.
* BUG: fix arch-dependent SIZEOF in npy_config.h for mac os x.David Cournapeau2009-11-271-0/+17
|
* ENH: add a guard to ensure config.h is never included directly.David Cournapeau2009-11-272-0/+14
|
* BUG: (#1221) special case mac os x in numpyconfig.hDavid Cournapeau2009-11-275-6/+34
| | | | | | | | | | Universal builds break the configure stage: we have to harcode the arch-specific values in the case of mac os x, as we have only one configuration stage per compile, but several arch per compile with the braindead -arch machinery. We rename the old numpyconfig.h to a private header, and numpyconfig.h itself post-fix the values in the case of mac os x.
* BUG: import DistutilsError.David Cournapeau2009-11-271-0/+2
|
* TST: add a regression test for #1081 (not fixed yet).David Cournapeau2009-11-271-0/+6
|
* BUG: (#1078): fix segfault when creating arrays with a sequence which ↵David Cournapeau2009-11-272-2/+21
| | | | contains 0d array.
* BUG: forgot to update the C_API_VERSION as well.David Cournapeau2009-11-261-1/+1
|
* ENH: add version 4 checksum of the C API (numpy 1.4.0).David Cournapeau2009-11-261-0/+2
|
* BUG: fix wrong declaration of _datetime_strings.David Cournapeau2009-11-251-1/+5
|
* BUG: declare _datetime_strings and mark its definition as a private symbol ↵David Cournapeau2009-11-252-1/+3
| | | | so that separate compilation works.
* BUG: the _arg ufunc declaration was accidentaly removed in a previous ↵David Cournapeau2009-11-252-82/+90
| | | | commit, breaking the separate compilation mode.
* numpy.datetime --> numpy.datetime_ and fix Descr_FromScalar to correctly add ↵Travis Oliphant2009-11-234-13/+43
| | | | DateTime Meta data.
* Remove extra comma in enum for C89 and C++ compatibility.mdroe2009-11-231-8/+8
|
* BUG: fix 2.5 >= try/except/finally.David Cournapeau2009-11-231-5/+6
|
* TST: use assert_warns to check for warnings (and to avoid cluttering ↵David Cournapeau2009-11-231-4/+17
| | | | non-verbose test output).
* ENH: add an assert_warns testing utility.David Cournapeau2009-11-232-1/+59
|
* REF: move warning context manager into utils.David Cournapeau2009-11-232-84/+88
|
* TST: mark spacing/nextafter long double versions tests as known failures on ↵David Cournapeau2009-11-231-0/+4
| | | | win32.
* TST: use different tests for each precision for spacing and nextafter.David Cournapeau2009-11-221-19/+35
|