MCPcopy Create free account
hub / github.com/numpy/numpy / isupper

Method isupper

numpy/core/defchararray.py:2440–2451  ·  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

2438 return istitle(self)
2439
2440 def isupper(self):
2441 """
2442 Returns true for each element if all cased characters in the
2443 string are uppercase and there is at least one character, false
2444 otherwise.
2445
2446 See Also
2447 --------
2448 char.isupper
2449
2450 """
2451 return isupper(self)
2452
2453 def join(self, seq):
2454 """

Callers 5

test_isupperMethod · 0.80
feature_is_existMethod · 0.80
feature_is_supportedMethod · 0.80
test_featureMethod · 0.80

Calls 1

isupperFunction · 0.85

Tested by 2

test_isupperMethod · 0.64
test_featureMethod · 0.64