Gets the remainder of the line, after a directive.
(line_info)
| 694 | |
| 695 | |
| 696 | def _get_after_directive(line_info): |
| 697 | """Gets the remainder of the line, after a directive.""" |
| 698 | sections = line_info.stripped.split(':', 2) |
| 699 | if len(sections) > 2: |
| 700 | return sections[-1] |
| 701 | else: |
| 702 | return '' |
| 703 | |
| 704 | |
| 705 | def _rst_section(line_info): |
no outgoing calls
no test coverage detected