(text)
| 246 | return text |
| 247 | |
| 248 | def get_first_start_page_from_text(text): |
| 249 | start_page = -1 |
| 250 | start_page_match = re.search(r'<start_index_(\d+)>', text) |
| 251 | if start_page_match: |
| 252 | start_page = int(start_page_match.group(1)) |
| 253 | return start_page |
| 254 | |
| 255 | def get_last_start_page_from_text(text): |
| 256 | start_page = -1 |
nothing calls this directly
no outgoing calls
no test coverage detected