mirror of
https://github.com/fastapi/fastapi.git
synced 2026-04-13 11:33:45 -04:00
⚡ Optimize regexp pattern in get_path_param_names (#1243)
This commit is contained in:
@@ -67,7 +67,7 @@ def get_model_definitions(
|
||||
|
||||
|
||||
def get_path_param_names(path: str) -> Set[str]:
|
||||
return {item.strip("{}") for item in re.findall("{[^}]*}", path)}
|
||||
return set(re.findall("{(.*?)}", path))
|
||||
|
||||
|
||||
def create_response_field(
|
||||
|
||||
Reference in New Issue
Block a user