summaryrefslogtreecommitdiff
path: root/numpy/lib/type_check.py
AgeCommit message (Expand)AuthorFilesLines
2018-02-01BUG: nan_to_num does not return scalars for scalar integer input (#10441)Matheus Vieira Portela1-7/+14
2018-01-04More misc. typosluz.paz1-1/+1
2017-11-13ENH: don't show boolean dtype, as it is impliedEric Wieser1-2/+2
2017-08-06BUG: Don't allow an array to be passed as the dtype argumentEric Wieser1-2/+1
2017-08-05MAINT/DOC: Use builtin when np.{x} is builtins.{x}.Eric Wieser1-2/+2
2017-07-03DOC: Add examples for complex dtypesEric Wieser1-13/+16
2017-07-01DOC: Improve documentation of common_type (#9344)Gunjan1-2/+2
2017-03-25API: Return scalars for scalar inputs to np.real/imaggfyoung1-12/+26
2017-02-20ENH: Allow for an in-place nan_to_num conversion. Fixes #8634Joshua Loyal1-2/+9
2017-02-10BUG: Make iscomplexobj compatible with custom dtypes againJoerg Behrmann1-5/+3
2016-09-20DOC: Fix description of isinf in nan_to_numYash Shah1-1/+1
2016-09-06DOC: change Numpy to NumPy in dosctrings and commentsPierre de Buyl1-1/+1
2016-08-15ENH: improve duck typing inside iscomplexobjMichael Goerz1-2/+10
2016-03-30Faster real_if_close.Antony Lee1-1/+1
2015-12-19DOC: Use print only as function when print_function is imported from __future__gfyoung1-1/+1
2015-06-22BUG: np.float16 not recognized in np.common_typeMarten van Kerkwijk1-9/+10
2015-04-03BUG: Refactor nan_to_num and make list inputs work in Python > 3.2.Charles Harris1-34/+23
2015-04-03BUG: Integer list passed into nan_to_num results in ValueError.jmrosen1551-0/+1
2014-07-31STY: Make files in numpy/lib PEP8 compliant.Charles Harris1-31/+31
2013-08-18STY: Giant comma spacing fixup.Charles Harris1-5/+5
2013-08-18STY: Giant whitespace cleanup.Charles Harris1-1/+0
2013-05-25DOC: Correcting docstring for asscalarDan Miller1-1/+2
2013-05-02MAINT: Apply 2to3 idioms fixer.Charles Harris1-1/+1
2013-04-062to3: Apply `print` fixer.Charles Harris1-1/+1
2013-03-282to3: Use absolute imports.Charles Harris1-2/+2
2013-03-012to3: Put `from __future__ import division in every python file.Charles Harris1-1/+4
2012-07-07DOC: merge doc wiki edits. A number of small edits in linalg and lib.Ralf Gommers1-6/+6
2012-05-10ENH: Change datetime64 to use c_metadata instead of metadataMark Wiebe1-1/+0
2011-05-20ENH: Remove 'den' datetime metadata, move datetime_data to a C functionMark Wiebe1-45/+1
2011-04-05STY: Update exception style, easy ones.Charles Harris1-2/+2
2011-04-02WHT: Cleanup trailing whitespace.Charles Harris1-1/+0
2010-07-17BUG: core: use PyCapsule objects only on Python >= 3.0, stay with PyCObjects ...Pauli Virtanen1-1/+1
2010-05-04BUG: Fix datetime_data for python versions >= 2.7.Charles Harris1-1/+4
2010-05-03ENH, BUG: PyCObject will be deprecated in python 2.7. So use the NpyCapsuleCharles Harris1-1/+1
2010-04-27BUG: Fix missing import for datatime_data.Stefan van der Walt1-0/+1
2010-02-23BUG: Replace deprecated PyCObject by PyCapsule for Python >= 3.1.Charles Harris1-7/+12
2009-12-28fixed a whole bunch of doctestsPaul Ivanov1-1/+2
2009-11-20Fix and test conversion and construction of date-time dtypes.Travis Oliphant1-3/+9
2009-11-19Add function to get datetime information from a date-time dtype.Travis Oliphant1-1/+33
2009-10-02Docstring update: libPauli Virtanen1-26/+62
2009-10-02Docstring updates, part 1Pauli Virtanen1-2/+31
2009-09-16Move finfo into core.David Cournapeau1-2/+2
2009-06-19Merge from doc wikiPauli Virtanen1-7/+21
2009-03-24Merge from the doc wikiPauli Virtanen1-31/+119
2008-10-28Import documentation from doc wiki (part 2, work-in-progress docstrings, but ...Pauli Virtanen1-11/+89
2008-08-05Merge from documentation editor.Stefan van der Walt1-19/+141
2007-10-29ran reindent.py to clean up whitespaceJarrod Millman1-1/+1
2007-08-01Fix asfarray to return an array instead of a matrix.Stefan van der Walt1-1/+1
2007-02-06Fix nan_to_num on complex arrays. Fixes ticket #443Travis Oliphant1-1/+1
2007-02-01Allow matrices to pass through more functions.Travis Oliphant1-11/+13