MCPcopy Index your code
hub / github.com/ipython/ipython / find_last_indent

Function find_last_indent

IPython/core/inputtransformer2.py:878–882  ·  view source on GitHub ↗
(lines)

Source from the content-addressed store, hash-verified

876
877
878def find_last_indent(lines):
879 m = _indent_re.match(lines[-1])
880 if not m:
881 return 0
882 return len(m.group(0).replace('\t', ' '*4))
883
884
885class MaybeAsyncCompile(Compile):

Callers 1

check_completeMethod · 0.85

Calls 3

matchMethod · 0.80
replaceMethod · 0.80
groupMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…