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

Method _handle_continuation_line

Lib/configparser.py:1102–1110  ·  view source on GitHub ↗
(self, st, line, fpname)

Source from the content-addressed store, hash-verified

1100 return st.errors
1101
1102 def _handle_continuation_line(self, st, line, fpname):
1103 # continuation line?
1104 is_continue = (st.cursect is not None and st.optname and
1105 st.cur_indent_level > st.indent_level)
1106 if is_continue:
1107 if st.cursect[st.optname] is None:
1108 raise MultilineContinuationError(fpname, st.lineno, line)
1109 st.cursect[st.optname].append(line.clean)
1110 return is_continue
1111
1112 def _handle_rest(self, st, line, fpname):
1113 # a section header or option header?

Callers 1

_read_innerMethod · 0.95

Calls 2

appendMethod · 0.45

Tested by

no test coverage detected