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

Method _dump

Lib/difflib.py:877–880  ·  view source on GitHub ↗

Generate comparison results for a same-tagged range.

(self, tag, x, lo, hi)

Source from the content-addressed store, hash-verified

875 yield from g
876
877 def _dump(self, tag, x, lo, hi):
878 """Generate comparison results for a same-tagged range."""
879 for i in range(lo, hi):
880 yield '%s %s' % (tag, x[i])
881
882 def _plain_replace(self, a, alo, ahi, b, blo, bhi):
883 assert alo < ahi and blo < bhi

Callers 3

compareMethod · 0.95
_plain_replaceMethod · 0.95
_fancy_helperMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected