MCPcopy Index your code
hub / github.com/RustPython/RustPython / casefold

Method casefold

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

Source from the content-addressed store, hash-verified

1453 return self.__class__(self.data.capitalize())
1454
1455 def casefold(self):
1456 return self.__class__(self.data.casefold())
1457
1458 def center(self, width, *args):
1459 return self.__class__(self.data.center(width, *args))

Callers 8

ismountFunction · 0.45
test_casefoldMethod · 0.45
test_issue18183Method · 0.45
test_launcher.pyFile · 0.45
test_mode_win32Method · 0.45
setup_moduleFunction · 0.45
check_joinMethod · 0.45
_path_joinFunction · 0.45

Calls 1

__class__Method · 0.45

Tested by 5

test_casefoldMethod · 0.36
test_issue18183Method · 0.36
test_mode_win32Method · 0.36
setup_moduleFunction · 0.36
check_joinMethod · 0.36