mirror of https://github.com/tiangolo/fastapi.git
⚡ Optimize regexp pattern in get_path_param_names (#1243)
This commit is contained in:
parent
535247ffc4
commit
434d32b891
|
|
@ -67,7 +67,7 @@ def get_model_definitions(
|
||||||
|
|
||||||
|
|
||||||
def get_path_param_names(path: str) -> Set[str]:
|
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(
|
def create_response_field(
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue