You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 26, 2026. It is now read-only.
Causes the generated def test_parse_service_path() method fail with nothing to repeat at position 1 error due to a broken regexp (r"^*$") in the corresponding generated helper method:
@staticmethoddefparse_service_path(path: str) ->Dict[str,str]:
"""Parses a service path into its component segments."""m=re.match(r"^*$", path)
returnm.groupdict() ifmelse {}
For example this asterisk resource name pattern:
https://github.com/googleapis/googleapis/blob/master/google/cloud/eventarc/v1/trigger.proto#L37
Causes the generated
def test_parse_service_path()method fail withnothing to repeat at position 1error due to a broken regexp (r"^*$") in the corresponding generated helper method: