diff options
author | mdroe <mdroe@localhost> | 2009-10-13 17:04:40 +0000 |
---|---|---|
committer | mdroe <mdroe@localhost> | 2009-10-13 17:04:40 +0000 |
commit | c4db9cf34c643bd422060de6b636f53a57557c4d (patch) | |
tree | 367881ff32567ca641db7a38f287cbe866f33fa1 /numpy/core/defchararray.py | |
parent | 64ac086496fb1268aaecabb71e25f2da63288b5b (diff) | |
download | numpy-c4db9cf34c643bd422060de6b636f53a57557c4d.tar.gz |
Update defchararray.__all__ so that the documentation editor will pick up its docstrings.
Diffstat (limited to 'numpy/core/defchararray.py')
-rw-r--r-- | numpy/core/defchararray.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/numpy/core/defchararray.py b/numpy/core/defchararray.py index 799887a7d..45b061d69 100644 --- a/numpy/core/defchararray.py +++ b/numpy/core/defchararray.py @@ -21,7 +21,17 @@ from numeric import array as narray from numpy.core.multiarray import _vec_string import numpy -__all__ = ['chararray'] +__all__ = ['chararray', + 'equal', 'not_equal', 'greater_equal', 'less_equal', 'greater', 'less', + 'str_len', 'add', 'multiply', 'mod', 'capitalize', 'center', 'count', + 'decode', 'encode', 'endswith', 'expandtabs', 'find', 'format', + 'index', 'isalnum', 'isalpha', 'isdigit', 'islower', 'isspace', + 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', + 'partition', 'replace', 'rfind', 'rindex', 'rjust', 'rpartition', + 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', 'strip', + 'swapcase', 'title', 'translate', 'upper', 'zfill', + 'isnumeric', 'isdecimal', + 'array', 'asarray'] _globalvar = 0 _unicode = unicode |