summaryrefslogtreecommitdiff
path: root/numpy/core/arrayprint.py
Commit message (Expand)AuthorAgeFilesLines
* ENH: str/repr fixed for 0d-arraysAllan Haldane2017-05-161-31/+36
* DOC: Release note and docstringEric Wieser2017-05-011-0/+1
* ENH: Print object arrays containing lists unambiguouslyEric Wieser2017-05-011-0/+10
* BUG: Prevent infinite recursion when printing self-containing arraysEric Wieser2017-04-251-2/+46
* BUG: Don't construct formatters until we're sure they're correctEric Wieser2017-04-201-27/+32
* MAINT: replace len(x.shape) with x.ndimEric Wieser2017-02-241-1/+1
* DOC: fix typos in arrayprint docstrings.Ralf Gommers2016-11-061-2/+2
* MAINT: Refactor numpy/core/arrayprint.pyShota Kawabuchi2016-11-011-18/+3
* BUG: Fix array2string for structured array scalarsShota Kawabuchi2016-10-291-15/+20
* BUG: Fix subarray format changed in #8160Shota Kawabuchi2016-10-221-18/+31
* BUG: fix _array2string for strustured array (issue #5692)Shota Kawabuchi2016-10-181-33/+66
* BUG: Fix array printing with precision=0.wrwrwr2016-10-071-3/+6
* BUG: Suppress common NaT warningsSebastian Berg2016-09-021-3/+6
* Merge pull request #7042 from charris/revert-7001Charles Harris2016-01-161-3/+3
|\
| * Revert "Merge pull request #7001 from shoyer/NaT-comparison"Charles Harris2016-01-161-3/+3
* | API: Make datetime64 timezone naiveStephan Hoyer2016-01-151-10/+4
|/
* TST, ENH: make all comparisons with NaT falseStephan Hoyer2016-01-141-3/+3
* DOC: Use print only as function when print_function is imported from __future__gfyoung2015-12-191-4/+4
* STY: PEP8 fixes for numpy/core/*.pyCharles Harris2015-07-051-18/+23
* ENH: improve string representation of NaTs in timedelta64 arraysAntoine Pitrou2015-07-011-5/+18
* DEP,MAINT: Remove support for a._format array printing.Charles Harris2015-06-211-44/+27
* MAINT: Mark deprecation warning with a date and Numpy version.Charles Harris2015-06-211-0/+2
* DOC: add array2string to reference guide and explain relation to array_repr/strRalf Gommers2015-03-181-0/+4
* BUG: Fixes #5376: np.ravel to return same array typeGarrett-R2015-01-021-1/+2
* STY: Giant comma spacing fixup.Charles Harris2013-08-181-3/+3
* STY: Giant whitespace cleanup.Charles Harris2013-08-181-1/+0
* MAINT: Use np.errstate context manager.Charles Harris2013-07-111-8/+4
* 2to3: Apply renames fixer.Charles Harris2013-04-131-2/+6
* Merge pull request #3202 from charris/2to3-reduce-fixupsnjsmith2013-04-071-2/+1
|\
| * MAINT: Cleanup some imports involving reduce.Charles Harris2013-04-061-2/+1
* | 2to3: Apply `print` fixer.Charles Harris2013-04-061-1/+1
|/
* Merge pull request #460 from endolith/regex_formattingCharles Harris2013-04-031-1/+2
|\
| * DOC: regex-assisted fixes of definition list formattingendolith2013-03-191-1/+2
* | 2to3: Use absolute imports.Charles Harris2013-03-281-9/+9
* | 2to3: Replace xrange by range and use list(range(...)) where neededCharles Harris2013-03-271-4/+4
|/
* 2to3: Put `from __future__ import division in every python file.Charles Harris2013-03-011-0/+3
* BUG: Use numpystr for arrayprint fallback instead of strSkipper Seabold2012-09-251-1/+1
* Remove maskna API from ndarray, and all (and only) the code supporting itNathaniel J. Smith2012-06-161-75/+40
* BUG: fix incorrect exception handling in arrayprint. Closes ticket 2038.Ralf Gommers2012-02-041-1/+1
* BUG: missingdata: Fix long double printing of NAsMark Wiebe2011-08-271-3/+3
* BUG: repr: Make NA line up in the float array repr like inf and nanMark Wiebe2011-08-271-1/+1
* ENH: missingdata: Add nastr= parameter to np.set_printoptions()Mark Wiebe2011-08-271-16/+24
* BUG: missingdata: Fix mask usage in PyArray_TakeFrom, add tests for itMark Wiebe2011-08-271-2/+2
* ENH: missingdata: Make arr.item() and arr.itemset() work with NA masksMark Wiebe2011-08-271-10/+14
* ENH: missingdata: Another NA array formatting tweakMark Wiebe2011-08-271-2/+9
* ENH: missingdata: Try to get basic NA printing to be okMark Wiebe2011-08-271-16/+41
* ENH: missingdata: Change boolean indexing to broadcast to the left manuallyMark Wiebe2011-08-271-5/+0
* ENH: Work in progress on arr.reshape, other misc changesMark Wiebe2011-08-271-0/+6
* ENH: missingdata: Get printing of NAs to work a little bit betterMark Wiebe2011-08-271-1/+3
* ENH: missingdata: Really simple printing with NA works in some cases now tooMark Wiebe2011-08-271-4/+2