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

Method namelist

Lib/zipfile/_path/__init__.py:182–186  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

180 """
181
182 def namelist(self):
183 with contextlib.suppress(AttributeError):
184 return self.__names
185 self.__names = super().namelist()
186 return self.__names
187
188 def _name_set(self):
189 with contextlib.suppress(AttributeError):

Callers 4

namelistMethod · 0.45
injectMethod · 0.45
iterdirMethod · 0.45
globMethod · 0.45

Calls 1

superClass · 0.85

Tested by

no test coverage detected