MCPcopy Index your code
hub / github.com/python/cpython / capitalize

Method capitalize

Lib/collections/__init__.py:1492–1493  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1490
1491 # the following methods are defined in alphabetical order:
1492 def capitalize(self):
1493 return self.__class__(self.data.capitalize())
1494
1495 def casefold(self):
1496 return self.__class__(self.data.casefold())

Callers 10

ciFunction · 0.45
assertSequenceEqualMethod · 0.45
singletonMethod · 0.45
add_headerMethod · 0.45
do_request_Method · 0.45
validate_uopFunction · 0.45
calcFunction · 0.45
mainFunction · 0.45
__repr__Method · 0.45

Calls 1

__class__Method · 0.45

Tested by 1

mainFunction · 0.36