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

Method get_deferred_counts

Tools/scripts/summarize_stats.py:343–348  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

341 return basic, specialized_hits, specialized_misses, not_specialized
342
343 def get_deferred_counts(self) -> dict[str, int]:
344 return {
345 opcode: opcode_stat.get("specialization.deferred", 0)
346 for opcode, opcode_stat in self._data.items()
347 if opcode != "RESUME"
348 }
349
350 def get_misses_counts(self) -> dict[str, int]:
351 return {

Callers 1

calc_deferred_by_tableFunction · 0.80

Calls 2

getMethod · 0.45
itemsMethod · 0.45

Tested by

no test coverage detected