diff options
Diffstat (limited to 'numpy')
| -rw-r--r-- | numpy/core/defchararray.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/numpy/core/defchararray.py b/numpy/core/defchararray.py index 620cc0a92..005d35640 100644 --- a/numpy/core/defchararray.py +++ b/numpy/core/defchararray.py @@ -948,6 +948,13 @@ def isupper(a): See Also -------- str.isupper + + Examples + -------- + >>> str = "GHC" + >>> np.char.isupper(str) + array(True) + """ return _vec_string(a, bool_, 'isupper') |
