MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / _load

Method _load

tools/python-3.11.9-amd64/Lib/tarfile.py:2688–2696  ·  view source on GitHub ↗

Read through the entire archive file and look for readable members.

(self)

Source from the content-addressed store, hash-verified

2686 raise ValueError(tarinfo)
2687
2688 def _load(self):
2689 """Read through the entire archive file and look for readable
2690 members.
2691 """
2692 while True:
2693 tarinfo = self.next()
2694 if tarinfo is None:
2695 break
2696 self._loaded = True
2697
2698 def _check(self, mode=None):
2699 """Check if TarFile is still open, and if the operation's mode

Callers 5

getmembersMethod · 0.95
get_dataFunction · 0.45
synopsisFunction · 0.45
importfileFunction · 0.45
runMethod · 0.45

Calls 1

nextMethod · 0.95

Tested by

no test coverage detected