(pattern: str)
| 4522 | |
| 4523 | @staticmethod |
| 4524 | def _regex_literal_prefix(pattern: str) -> str: |
| 4525 | literal, _ = ResponseParser._regex_literal_prefix_and_remainder(pattern) |
| 4526 | return literal |
| 4527 | |
| 4528 | @staticmethod |
| 4529 | def _regex_literal_prefix_and_remainder(pattern: str) -> Tuple[str, str]: |
no test coverage detected