summaryrefslogtreecommitdiff
path: root/numpy/core/defchararray.py
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2009-10-13 08:24:55 +0000
committerDavid Cournapeau <cournape@gmail.com>2009-10-13 08:24:55 +0000
commit656acfda1bd89ad45bd1db384b52b4adb6769c40 (patch)
tree53d1978b6ec651409ae0fbd59cb3330b45844451 /numpy/core/defchararray.py
parent99d0d70ccfea19d04a25b7484af9506f28303f7e (diff)
downloadnumpy-656acfda1bd89ad45bd1db384b52b4adb6769c40.tar.gz
BUG: non ascii character in docstring.
Diffstat (limited to 'numpy/core/defchararray.py')
-rw-r--r--numpy/core/defchararray.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/defchararray.py b/numpy/core/defchararray.py
index 35c1d907e..799887a7d 100644
--- a/numpy/core/defchararray.py
+++ b/numpy/core/defchararray.py
@@ -561,7 +561,7 @@ def expandtabs(a, tabsize=8):
replaced by one or more spaces, depending on the current column
and the given `tabsize`. The column number is reset to zero after
each newline occurring in the string. If `tabsize` is not given, a
- tab size of 8 characters is assumed. This doesn’t understand other
+ tab size of 8 characters is assumed. This doesn't understand other
non-printing characters or escape sequences.
Parameters