- 7aa30ae datatype --> dtype in ndpointer and fix logic of from_param checks by Travis Oliphant · 19 years ago
- 7168ea1 Allow for type-less ndpointer. by Travis Oliphant · 19 years ago
- 3fa71a7 Improve ndpointer to allow shape and flags checking as well. by Travis Oliphant · 19 years ago
- eee00f8 Remove _as_parameter_ attribute from arrays and add it to the ctypes object. Create an ndpointer class factory to return classes that check for specific array types. These can be used in argtypes list to ctypes functions. by Travis Oliphant · 19 years ago
- 01a0309 Change default axis argument of average and several masked array functions. Move old behaviors to compatibility layer. by Travis Oliphant · 19 years ago
- c261b1f by Travis Oliphant · 19 years ago
- fec6f08 Fix adding docstrings of digitize, bincount, and add_docstring so it doesn't happen twice. by Travis Oliphant · 19 years ago
- db34967 Move source, info, and who to NumPy by Travis Oliphant · 19 years ago
- 6983e3f Move converting code by Travis Oliphant · 19 years ago
- e292dc4 Fix convertnumericA.py to fix transition from 'b' to 'B' by Travis Oliphant · 19 years ago
- d372798 Move location of flatnonzero by Travis Oliphant · 19 years ago
- 3457ac3 Fix uses of nonzero and add flatnonzero by Travis Oliphant · 19 years ago
- 9d98d9d Add back dft stub and alter warning. by Travis Oliphant · 19 years ago
- 06ad634 Add back a compatibility UserArray. by Travis Oliphant · 19 years ago
- f1cca04 Many name-changes in oldnumeric. This may break some numpy code that was using the oldnumeric interface. by Travis Oliphant · 19 years ago
- 8f26568 Change axis=0 to axis=None to be consistent with methods and move axis=0 functions to oldnumeric by Travis Oliphant · 19 years ago
- a904655 Convert so that axis arguments are consistent for methods and functions. Place functions for which this changes the Numeric default into oldnumeric. by Travis Oliphant · 19 years ago
- 77187d2 Format docstrings to be consistent with others. by Stefan van der Walt · 19 years ago
- a1e9a90 Add diagflat. Begin to add numarray compatibility by Travis Oliphant · 19 years ago
- 0c7be2c Fix longdouble machar problem (iterations too low) by Travis Oliphant · 19 years ago
- 7d50c63 Fix ticket #216. Also fix uses of DATA_RENEW so that object arrays will raise an error instead of possibly memory-leak when reference counts aren't freed. Fix uses of longlong to Py_ssize_t and apppropriate FORMAT string. by Travis Oliphant · 19 years ago
- e4c823d Py_OptimizeFlag is available from Python.h by Travis Oliphant · 19 years ago
- 4b9387a Don't add docstrings in add_newdoc if run with -OO by Travis Oliphant · 19 years ago
- 02926b0 numpy.lib.getlimits: replace typecodes with dtypes by cookedm · 19 years ago
- 39bd37d numpy.lib.machar: replace 'while 1' loops with 'for _ in max_iter' by cookedm · 19 years ago
- 4bba31c Back to 0.9.9 version by Travis Oliphant · 19 years ago
- ec6d062 Make version number 0.9.9 until 1.0 comes out by Travis Oliphant · 19 years ago
- e116574 Fix-up convertcode and CAPI docs by Travis Oliphant · 19 years ago
- ee4083f Fixed a memory-leak in EnsureArray. Added __array_priority__ to array scalars. Added bug-fixes part of david huard's histogramdd ticket. by Travis Oliphant · 19 years ago
- 622701d Clean up docstrings. by Travis Oliphant · 19 years ago
- 5083166 Apply patch for unique from #154 by Travis Oliphant · 19 years ago
- d5a13c5 add some more docstrings by cookedm · 19 years ago
- 10943b6 Replace ScipyTestCase with NumpyTestCase by cookedm · 19 years ago
- de0ac34 convertcode: replace ArrayType, NewAxis, and typecode = by cookedm · 19 years ago
- eb9f5f7 Remove global symbols from numpy. Remove use of replacetypechars in convertcode. by Travis Oliphant · 19 years ago
- a345bd2 Fix .choose docstring and allow more functions to be 'vectorized' by Travis Oliphant · 19 years ago
- b4ca1e1 replace some bare except:'s by cookedm · 19 years ago
- 36c839a Add simple get_numarray_include() function and typedefs for completeness by Travis Oliphant · 19 years ago
- 1acf453 Apply npy_ and NPY_ prefixes to all C-API names that don't already have PyArray_ prefixes. by Travis Oliphant · 19 years ago
- 6dc0d80 Add docstring for bincount. by Stefan van der Walt · 19 years ago
- be3e208 Patch from David Huard to future-proof histogram2d test by cookedm · 19 years ago
- 216f071 Fix UserArray. by Travis Oliphant · 19 years ago
- 823ca7e In meshgrid, use views on the input parameters to avoid changing their by Stefan van der Walt · 19 years ago
- 8027438 default dtype conversion by sasha · 19 years ago
- dbee46a Change the name to ctypes_load_library by Travis Oliphant · 19 years ago
- 7a90a21 Add a require function, a issubdtype, and a load_ctypes_function to NumPy by Travis Oliphant · 19 years ago
- c00b400 Improve c_numpy.pxd a bit. Re-name get_numpy_include() to get_include() and deprecate old name. Add PyArray_ZEROS and PyArray_EMPTY macros which take type-number instead of data-type object. by Travis Oliphant · 19 years ago
- b803061 Adjust histogram2d a bit. Fix doc for logspace. by Travis Oliphant · 19 years ago
- 3bf7055 Added histogram2d #161 by Travis Oliphant · 19 years ago
- 7d4c3ed Make the default array type float. by Travis Oliphant · 19 years ago
- 2b06537 Cast to double instead of float in digitize. by Stefan van der Walt · 19 years ago
- bbabc5c Add docstring and tests for digitize. by Stefan van der Walt · 19 years ago
- cf80c72 Add code to descend through a field and increment (or decrement) any object reference counts. by Travis Oliphant · 19 years ago
- 7dd0e2b Clean up diag documentation. Clean up PyArray_INCREF and PyArray_XDECREF to use new iterators. by Travis Oliphant · 19 years ago
- 1c2110f Add boolean indexing capability mixed with slice objects. by Travis Oliphant · 19 years ago
- f1e6e2b Make import_array and import_ufunc MACROS again. by Travis Oliphant · 19 years ago
- 43de54a Add meshgrid to NumPy by Travis Oliphant · 19 years ago
- 8a12952 Fix Python 2.3 incompatibilities by cookedm · 19 years ago
- b05d85b Fix deprecated for when the function doesn't have a __dict__ by cookedm · 19 years ago
- 1174b73 For `deprecated`, include a note about the function being deprecated in its docstring. by cookedm · 19 years ago
- 2f4a967 Expose deprecate function by Travis Oliphant · 19 years ago
- 80d85d6 Remove print statement. by Travis Oliphant · 19 years ago
- 7a95781 Preserve matrices. Fix #142 by Travis Oliphant · 19 years ago
- bc5dc0a Fix-up imports a bit. by Travis Oliphant · 19 years ago
- 6408d0d Fix-up oldnumeric module by Travis Oliphant · 19 years ago
- fbf0b47 Check-in name-space changes so that numpy.oldnumeric is the compatibility module and numpy does not contain all of the names. by Travis Oliphant · 19 years ago
- c0d3293 Apply patch #137 by Travis Oliphant · 19 years ago
- 2e40c90 Add docstrings, update common_type to return a scalar type instead of a typecode. by cookedm · 19 years ago
- 6768d24 Add RNG interface and clean up old-interfaces to be separate from newer ones. by Travis Oliphant · 19 years ago
- 8f7d59f Fix unravel_index docstring. by Stefan van der Walt · 19 years ago
- ebc3848 Remove deprecated names from ma and tests. by Travis Oliphant · 19 years ago
- ce9414d Use convertcode to replace matrixmultiply with dot. Add DeprecationWarning to several old Numeric calls. by Travis Oliphant · 19 years ago
- 9f88ecb Comment changes and change var and std to divide by N instead of N-1 by Travis Oliphant · 19 years ago
- 4de4ac8 Add row_stack as alias to vstack to complement column_stack. by Travis Oliphant · 19 years ago
- 1b425c5 Rename fromflat to unravel_index. Add argwhere function. Change where docstring to reflect truth. by Travis Oliphant · 19 years ago
- b686a42 Fix for linspace (#118) was incomplete; good now. by cookedm · 19 years ago
- a144516 #118: linspace should always return floats by cookedm · 19 years ago
- 7cd1911 Fix crash for zero-size arrays. by Travis Oliphant · 19 years ago
- 4a0b997 Add missing Py_INCREF to fix ticket #95 by Travis Oliphant · 19 years ago
- 30581a5 fix: `emath` instead of `nmath` by abaecker · 19 years ago
- 087ef6d numpy.lib.scimath --> numpy.emath by Travis Oliphant · 19 years ago
- f544e77 Add math module to numpy namespace so numpy.math works same as Numeric.math. Change numpy.math to numpy.nmath by Travis Oliphant · 19 years ago
- c7737e6 Fix indentation error. by Travis Oliphant · 19 years ago
- 91548d0 Add improved checking for number of arguments to support more functions by Travis Oliphant · 19 years ago
- 3f682ff Added NumpyTestCase.rundocs method to support running doc-tests via unittest machinery - needed for running tests via testoob. by Pearu Peterson · 19 years ago
- 39e6217 Add new C-API function in middle. Bump C-API version number. by Travis Oliphant · 19 years ago
- 6a72022 Slightly different fix to vectorize. by Travis Oliphant · 19 years ago
- e328ecf Fix vectorize to handle scalar return values. by Travis Oliphant · 19 years ago
- 8c7d39d Make ext module typespecs to use PyMODINIT_FUNC that is essential for mingw32 and c++ code combination to work correctly. by Pearu Peterson · 19 years ago
- b00fb8d Fix kron so that the return type reflects the type of its arguments. Also, raise an exception if the arguments are not rank-2 since the other cases were some combination of ambiguous or broken. by Tim Hochberg · 19 years ago
- 787e44f fix typo. by Travis Oliphant · 19 years ago
- 021da2c Fix bad __getattr__ code causing recursion. by Travis Oliphant · 19 years ago
- a522173 Fix object-loop reference counting in BUFFERED UFUNC. by Travis Oliphant · 19 years ago
- 9640396 Fix segfault on indexing (but functionality still not working). Add vectorize test-case (ticket #52). Improve comments on broadcast failure. by Travis Oliphant · 19 years ago
- ec554d0 Fixed where to always return a tuple by Travis Oliphant · 19 years ago
- 5534a99 Fix Ticket #52 by Travis Oliphant · 19 years ago
- 65d44cd Fixed 'from numpy.lib.scimath import *' failure. by Pearu Peterson · 19 years ago
- 8898b96 Fix-up usage of asarray. by Travis Oliphant · 19 years ago
- 768e57a remove unused imports by Tim Leslie · 19 years ago
- 3c45bc3 remove unused import by Tim Leslie · 19 years ago