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

Method finalize_pending

Lib/tomllib/_parser.py:224–227  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

222 self._pending_flags.add((key, flag))
223
224 def finalize_pending(self) -> None:
225 for key, flag in self._pending_flags:
226 self.set(key, flag, recursive=False)
227 self._pending_flags.clear()
228
229 def unset_all(self, key: Key) -> None:
230 cont = self._flags

Callers 1

loadsFunction · 0.80

Calls 2

setMethod · 0.95
clearMethod · 0.45

Tested by

no test coverage detected