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

Method isspace

numpy/_core/defchararray.py:905–916  ·  view source on GitHub ↗

Returns true for each element if there are only whitespace characters in the string and there is at least one character, false otherwise. See Also -------- char.isspace

(self)

Source from the content-addressed store, hash-verified

903 return islower(self)
904
905 def isspace(self):
906 """
907 Returns true for each element if there are only whitespace
908 characters in the string and there is at least one character,
909 false otherwise.
910
911 See Also
912 --------
913 char.isspace
914
915 """
916 return isspace(self)
917
918 def istitle(self):
919 """

Callers 2

test_isspaceMethod · 0.80
test_isspaceMethod · 0.80

Calls

no outgoing calls

Tested by 2

test_isspaceMethod · 0.64
test_isspaceMethod · 0.64