MCPcopy Index your code
hub / github.com/numpy/numpy / isupper

Method isupper

numpy/_core/defchararray.py:930–941  ·  view source on GitHub ↗

Returns true for each element if all cased characters in the string are uppercase and there is at least one character, false otherwise. See Also -------- char.isupper

(self)

Source from the content-addressed store, hash-verified

928 return istitle(self)
929
930 def isupper(self):
931 """
932 Returns true for each element if all cased characters in the
933 string are uppercase and there is at least one character, false
934 otherwise.
935
936 See Also
937 --------
938 char.isupper
939
940 """
941 return isupper(self)
942
943 def join(self, seq):
944 """

Callers 4

test_isupperMethod · 0.80
test_isupperMethod · 0.80
test_isupper_unicodeMethod · 0.80

Calls

no outgoing calls

Tested by 4

test_isupperMethod · 0.64
test_isupperMethod · 0.64
test_isupper_unicodeMethod · 0.64