(text: str, **options: t.Any)
| 30 | |
| 31 | |
| 32 | def parse(text: str, **options: t.Any) -> Date | Time | DateTime | Duration: |
| 33 | # Use the mock now value if it exists |
| 34 | options["now"] = options.get("now") |
| 35 | |
| 36 | return _parse(text, **options) |
| 37 | |
| 38 | |
| 39 | def _parse( |