(self, st, line, fpname)
| 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? |
no test coverage detected