summaryrefslogtreecommitdiff
path: root/numpy/core/defchararray.py
AgeCommit message (Expand)AuthorFilesLines
2017-03-17DOC: fix minor docstring typosCJ Carey1-2/+2
2016-12-09MAINT: Other cleanup Python < 2.7 and Python3 < 3.4Alexandr Shadchin1-11/+1
2016-09-06DOC: change Numpy to NumPy in dosctrings and commentsPierre de Buyl1-7/+7
2015-07-05MAINT: Fix some pyflakes warnings in numpy/core/*.pyCharles Harris1-11/+12
2015-07-05STY: PEP8 fixes for numpy/core/*.pyCharles Harris1-8/+7
2015-07-01DOC: Fix docstring warnings in documetation generation.Charles Harris1-1/+1
2015-06-22BUG: Fixed slicing of chararrays on Python 3.Erik M. Bray1-1/+3
2014-12-12DOC : do not abuse enum markupThomas A Caswell1-6/+6
2013-08-01DOC: np.char.startswith checks a prefix, not a suffixLars Buitinck1-1/+1
2013-05-31MAINT: adept divisions for truedivideSebastian Berg1-2/+2
2013-04-24MAINT: Remove unneeded version checks.Charles Harris1-346/+242
2013-04-132to3: Apply the `numliterals` fixer and skip the `long` fixer.Charles Harris1-1/+1
2013-04-062to3: Apply `print` fixer.Charles Harris1-1/+1
2013-03-282to3: Use absolute imports.Charles Harris1-4/+4
2013-03-012to3: Put `from __future__ import division in every python file.Charles Harris1-0/+1
2012-07-07DOC: merge wiki edits for chararray. Thanks to Tim Cera.Ralf Gommers1-41/+73
2012-04-07BUG: fix regression for indexing chararrays with empty list. Closes #1948.Ralf Gommers1-1/+1
2012-03-03DOC: merge wiki doc edits.Ralf Gommers1-3/+8
2011-04-05STY: Update exception style, easy ones.Charles Harris1-4/+4
2011-03-15DOC: fix some reST errors in core/defchararray.pyRalf Gommers1-6/+6
2010-02-203K: ENH: make defchararray work on Py3, and make its tests Py3 compliantPauli Virtanen1-1/+17
2010-02-203K: BUG: core: fix some bytes/str issues in defchararray.pyPauli Virtanen1-2/+4
2010-02-17updated docstrings from pydoc website (thanks to everyone who contributed!)Jarrod Millman1-9/+74
2009-12-28fixed a whole bunch of doctestsPaul Ivanov1-17/+19
2009-12-063K: core: make defchararray to importPauli Virtanen1-1/+4
2009-11-13first set of checkins from the doc editorJarrod Millman1-89/+185
2009-10-26Fix types in docstringsmdroe1-82/+83
2009-10-14Fix coercion of unicode object to chararraymdroe1-1/+1
2009-10-14Remove 'format' altogether, since I don't think I'll be implementing it any t...mdroe1-4/+4
2009-10-14Fix oops in last commit. Committed some experimental things I shouldn't have...mdroe1-1/+0
2009-10-14Fix Unicode object -> chararray conversion on narrow Python buildsmdroe1-0/+32
2009-10-13Update defchararray.__all__ so that the documentation editor will pick up its...mdroe1-1/+11
2009-10-13BUG: non ascii character in docstring.David Cournapeau1-1/+1
2009-10-12Minor docstring correction.mdroe1-4/+4
2009-10-12Many improvements to chararray. Fixes Trac bugs 1199, 856, 855, 1231, 1235, ...mdroe1-541/+2261
2009-10-02Docstring update: corePauli Virtanen1-8/+461
2009-03-02Allow c in dtype for charray (#917).David Cournapeau1-1/+1
2008-10-28Import documentation from doc wiki (part 2, work-in-progress docstrings, but ...Pauli Virtanen1-0/+14
2007-10-29using faster string methods rather than deprecated string moduleJarrod Millman1-1/+1
2007-01-08Whitespace cleanup.Stefan van der Walt1-6/+6
2006-12-23Fix ticket #408 --- chararray problem with argsortTravis Oliphant1-0/+3
2006-12-09Fix shuffle and chararray printing for empty strings.Travis Oliphant1-1/+1
2006-11-20Fix startswith operation on character arrays.Stefan van der Walt1-1/+1
2006-08-14Strip characters from chararrays during comparisionTravis Oliphant1-3/+26
2006-08-11Fix silly mistake in chararray.Travis Oliphant1-0/+1
2006-08-03Strip white-space on element retrievalTravis Oliphant1-30/+6
2006-08-02Fix rstrip for character arrays (ticket #222).Stefan van der Walt1-2/+1
2006-07-28Remove clash of string module and string numpy object by renaming string scal...Travis Oliphant1-7/+7
2006-06-14Compress Python-side array interface to __array_interface__ attribute.Travis Oliphant1-1/+1
2006-04-14Add string (and unicode) comparison to array objects.Travis Oliphant1-28/+28