- 493f23d fix typos by endolith ยท 13 years ago
- 5dbd76a [enh] Remove a print statement in datetime.c by Nathaniel J. Smith ยท 14 years ago
- 1b6582d Merge branch 'index_error_info' by Nathaniel J. Smith ยท 14 years ago
- 004082c Tweak out-of-bounds exception message based on list feedback by Nathaniel J. Smith ยท 14 years ago
- a83e212 Work around Python 2.4's Py_ssize_t not being the same as npyint_p by Thouis (Ray) Jones ยท 14 years ago
- 6fe584f ENH: use new metadata registration for version and config. by David Cournapeau ยท 14 years ago
- cf72f82 Merge pull request #287 from ahmadia/patch-1 by Travis E. Oliphant ยท 14 years ago
- c8beafd Merge pull request #290 from mforbes/new-vectorize-clean by Travis E. Oliphant ยท 14 years ago
- f2a7464 Merge pull request #295 from mwiebe/datetime_unit_16compat by Travis E. Oliphant ยท 14 years ago
- db5168b Merge pull request #305 from r0k3/picklemaskedconstant by Travis E. Oliphant ยท 14 years ago
- a8f1612 Merge pull request #306 from nouiz/fill_diagonal by Travis E. Oliphant ยท 14 years ago
- 6cb0266 remove unused variables from histogramdd by Jake Vanderplas ยท 14 years ago
- e909e4e add the warp parameter to fill_diagonal for people that could want the old behavior. by Frederic ยท 14 years ago
- 69c33bf fix the wrapping problem of fill_diagonal with tall matrix. by Frederic ยท 14 years ago
- a11aab3 BUG: fix pickling MaskedConstant by Robert Kende ยท 14 years ago
- e2ec1ea TST: pickling MaskedConstant by Robert Kende ยท 14 years ago
- 3dbfaa0 fix previous patch: c_metdata should match metadata before DECREF by Thouis (Ray) Jones ยท 14 years ago
- d0f520a make sure self->metadata is valid before calling DECREF by Thouis (Ray) Jones ยท 14 years ago
- db50690 More careful checking of datetime metadata in dtype __setstate__() by Thouis (Ray) Jones ยท 14 years ago
- 7953c01 BUG: missing incref for metadata of datetime dtypes. by Thouis (Ray) Jones ยท 14 years ago
- 87a445e BUG: Disallow writing to flat iterators for readonly arrays. Ensure __array__ does not create UPDATEIFCOPY if underlying array on iterator is readonly. Plus some tests. by Travis E. Oliphant ยท 14 years ago
- 85b6828 Merge branch 'master' into clean-up-diagonal by Nathaniel J. Smith ยท 14 years ago
- 330468f Add coverage tests for IndexErrors, fix one bug, clean up two checks by Thouis (Ray) Jones ยท 14 years ago
- 56f8659 Add check_and_adjust_index(), and replace most index checks with it. by Thouis (Ray) Jones ยท 14 years ago
- 4c68a33 ENH: report bad value and dimenion to IndexError exceptions by Thouis (Ray) Jones ยท 14 years ago
- de8c536 Merge remote-tracking branch 'mwiebe/nditer_buffer_flag' into merge-293 by Nathaniel J. Smith ยท 14 years ago
- ee60711 BUG: Add a gap in NPY_DATETIMEUNIT enum where 1.6 had the busday unit by Mark Wiebe ยท 14 years ago
- 127ae2f ENH: Add kwarg support for vectorize (tickets #2100, #1156, and #1487) by Michael McNeil Forbes ยท 14 years ago
- 7ec6cf4 REF: simplify extension customization. by David Cournapeau ยท 14 years ago
- 87295b3 REF: use simpler API in top bscript. by David Cournapeau ยท 14 years ago
- fc466d4 BUG: add missing umath_tests extension to bento build. by David Cournapeau ยท 14 years ago
- d258928 BUG: install required generated headers. by David Cournapeau ยท 14 years ago
- 1fa15b0 BUG: '-framework Python' is not needed and can interfere. by Robert Kern ยท 14 years ago
- 4542c43 BUG: Add a new flag to nditer to indicate when op uses buffering by Mark Wiebe ยท 14 years ago
- dabe9ab ENH: Make internal per-op nditer flags type a typedef by Mark Wiebe ยท 14 years ago
- f2f306d LDBL_TRUE_MIN falls back to __LDBL_DENORM_MIN__ if not defined by Aron Ahmadia ยท 14 years ago
- e3862fe Fix dirty handling of internal compiler variable
by ahmadia ยท 14 years ago
- 51616c9 Rename PyArray_RequireWriteable to PyArray_FailUnlessWriteable by Nathaniel J. Smith ยท 14 years ago
- baaf181 Move internal NPY_ARRAY_WARN_ON_WRITE flag into an internal header. by Nathaniel J. Smith ยท 14 years ago
- b7e76c1 ENH: Explicit import of modules into the space in core/__init__.py by Yaroslav Halchenko ยท 14 years ago
- ac4ce7b Fix diagonal-related warnings and tests on Python 3 by Nathaniel J. Smith ยท 14 years ago
- 58392b0 Don't assume ctypes is available, it's not true on Python 2.4 by Nathaniel J. Smith ยท 14 years ago
- 6d36127 Clean up PyArray_Diagonal changes based on Chuck's feedback by Nathaniel J. Smith ยท 14 years ago
- 3f45eaa Fix numpy.distutils to find atlas BLAS on Ubuntu by Nathaniel J. Smith ยท 14 years ago
- ebffab2 BUG: Changed ipmt to accept array_like arguments. by Tim Cera ยท 14 years ago
- 977878a TST: mark test for floating point exceptions as knownfail. See #1755. by Ralf Gommers ยท 14 years ago
- 53d99f2 Add a missing guard for Python versions <2.6 by Nathaniel J. Smith ยท 14 years ago
- da9bf05 Fix a C90 compatibility error by Nathaniel J. Smith ยท 14 years ago
- 83f6abe Un-KNOWNFAIL the nditer test after merging Mark's fix from master by Nathaniel J. Smith ยท 14 years ago
- 412c8a6 Merge branch 'master' into clean-up-diagonal by Nathaniel J. Smith ยท 14 years ago
- 6c88395 TST: Fix memoryview 2.6/2.7 compatibiliy in maskna pep3118 test by Mark Wiebe ยท 14 years ago
- a169c98 TST: ticket #1878, test argmin with minimum signed integers. by Charles Harris ยท 14 years ago
- 6594f47 Merge pull request #278 from mwiebe/NA_buffer_errorcheck by Mark ๏ฟฝ๏ฟฝ 14 years ago
- 5a86e25 BUG: nditer: Memory leak from setting 'base' attribute two ways by Mark Wiebe ยท 14 years ago
- 35f735d BUG: fix typo in bscript. by David Cournapeau ยท 14 years ago
- 0812564 Document the PyArray_Diagonal transition scheme. by Nathaniel J. Smith ยท 14 years ago
- bea52bf Transition scheme for allowing PyArray_Diagonal to return a view by Nathaniel J. Smith ยท 14 years ago
- d403fed Add a test for ndarray.diagonal() by Nathaniel J. Smith ยท 14 years ago
- 6a90ada Funnel all assignments to PyArrayObject->base through a single point by Nathaniel J. Smith ยท 14 years ago
- cbce4e6 Consolidate all array writeability checking in new PyArray_RequireWriteable by Nathaniel J. Smith ยท 14 years ago
- 65fdf09 Merge pull request #276 from charris/fix-format-variable-mismatch by Stefan van der Walt ยท 14 years ago
- bfa66da BUG: maskna: PEP3118 code wasn't raising an error on NA-masked arrays by Mark Wiebe ยท 14 years ago
- bfaaefe BUG: fix running tests with coverage=True. by Ralf Gommers ยท 14 years ago
- 7939c20 BUG: Fix format/variable incompatibility. by Charles Harris ยท 14 years ago
- ddc944e BUG: Fix datetime 1.6 pickle compatibility test for Python 3. by Charles Harris ยท 14 years ago
- dc468d1 STY: Elaborate comment about cloning dtype's c_metadata by Mark Wiebe ยท 14 years ago
- 2c4f794 DOC: Improve documentation comment from PR 274 comment by Mark Wiebe ยท 14 years ago
- 9d63dae ENH: Change NPY_AUXDATA_FREE macro based on PR feedback by Mark Wiebe ยท 14 years ago
- b7cb21a BUG: Output the datetime64 dtype to the pickle format from 1.6 by Mark Wiebe ยท 14 years ago
- e686b36 ENH: Change datetime64 to use c_metadata instead of metadata by Mark Wiebe ยท 14 years ago
- eb40102 ENH: Add a NpyAuxData c_metadata to PyArray_Descr by Mark Wiebe ยท 14 years ago
- c869d12 BUG: ufunc: The refactored reduction code didn't work with object arrays by Mark Wiebe ยท 14 years ago
- 6c95a00 BUG: umath: greater_equal ufunc was using the wrong type resolver, failed with datetime64 by Mark Wiebe ยท 14 years ago
- 259fff8 BUG: Fix some test bugs. by Charles Harris ยท 14 years ago
- caf3b9e STY: Whitespace cleanups. by Charles Harris ยท 14 years ago
- 4929eba WRN: Remove unused function prototype from ctors.h. by Charles Harris ยท 14 years ago
- 7bf8286 WRN: Fix unused variable compiler warnings in scalarmathmodule.c.src. by Charles Harris ยท 14 years ago
- e96ed36 WRN: Fixed some unused variable compiler warnings in arraytypes.c.src. by Charles Harris ยท 14 years ago
- 1dba433 STY: Remove unused functions. by Charles Harris ยท 14 years ago
- 3277506 BUG: ticket #1578, fix PyArray_Scalar. by Charles Harris ยท 14 years ago
- d78746b BUG: ticket #1578, fix UNICODE_getitem. by Charles Harris ยท 14 years ago
- 321a014 ENH: Add PyUnicode_FromUCS4 to ucsnarrow. by Charles Harris ยท 14 years ago
- 8330e6f ENH: Always include ucsnarray.h and ucsnarray.c by Charles Harris ยท 14 years ago
- 243ab1e ENH: Fix bento script to always include ucsnarray.h and ucsnarrow.c. by Charles Harris ยท 14 years ago
- dafb2dd Merge pull request #253 from charris/fix-filter-importwarnings by Ralf Gommers ยท 14 years ago
- b86dc69 FIX: Implement Ralph's suggestion of removing category. by Charles Harris ยท 14 years ago
- cb9d359 BUG: Fix testing failure on missing ImportWarning in Python 2.4. by Charles Harris ยท 14 years ago
- 4872cac BLD: fix build error on Windows with MSVC9. Thanks to Christoph Gohlke. by Ralf Gommers ยท 14 years ago
- c17738a BUG: Find only platform-specific dlls in winsxs directory. by Han Genuit ยท 14 years ago
- b0b4afc ENH: Use get_mktime as wrapper for mktime. by Han Genuit ยท 14 years ago
- bc6159a ENH: Add get_mktime function to support multiple platforms. by hangenuit@gmail.com ยท 14 years ago
- 5d0e0aa BUG: Force MinGW to use 64-bits time type. by Han Genuit ยท 14 years ago
- 913e55d Merge pull request #251 from rgommers/no-importwarnings by Charles Harris ยท 14 years ago
- 9dfda59 Merge pull request #252 from rgommers/ticket-2103-cython-warning by Charles Harris ยท 14 years ago
- 12fe3d1 TST: remove spurious warning for optional dependency pytz. by Ralf Gommers ยท 14 years ago
- 0574e05 TST: filter Cython warning on import of random module. Closes #2103. by Ralf Gommers ยท 14 years ago
- 0679842 Revert "BUG: ticket #1578, Fix python-debug warning for python >= 2.7." by Charles Harris ยท 14 years ago
- 08c20a2 TST: filter ImportWarnings in NoseTester. by Ralf Gommers ยท 14 years ago
- 59019f1 FEAT: update to last bento+waf. by David Cournapeau ยท 14 years ago
- fc4784a BUG: Fix segfault when tests are run with python 2.7 debug. by Charles Harris ยท 14 years ago