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

Method endswith

Lib/collections/__init__.py:1521–1522  ·  view source on GitHub ↗
(self, suffix, start=0, end=_sys.maxsize)

Source from the content-addressed store, hash-verified

1519 return self.data.encode(encoding, errors)
1520
1521 def endswith(self, suffix, start=0, end=_sys.maxsize):
1522 return self.data.endswith(suffix, start, end)
1523
1524 def expandtabs(self, tabsize=8):
1525 return self.__class__(self.data.expandtabs(tabsize))

Callers 15

conf.pyFile · 0.45
add_annotationsFunction · 0.45
logcat_taskFunction · 0.45
package_versionFunction · 0.45
deltreeFunction · 0.45
create_stdlib_zipFunction · 0.45
detect_extension_modulesFunction · 0.45
package_versionFunction · 0.45
lib_platform_filesFunction · 0.45
testFunction · 0.45

Calls

no outgoing calls

Tested by 5

getvalueMethod · 0.36
_ellipsis_matchFunction · 0.36
__init__Method · 0.36
_testFunction · 0.36
runFunction · 0.36