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

Method _dump

Lib/difflib.py:874–877  ·  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

872 yield from g
873
874 def _dump(self, tag, x, lo, hi):
875 """Generate comparison results for a same-tagged range."""
876 for i in range(lo, hi):
877 yield '%s %s' % (tag, x[i])
878
879 def _plain_replace(self, a, alo, ahi, b, blo, bhi):
880 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