From 62d6b86c34cfd55214a6f56db2f0dde18a4a2aba Mon Sep 17 00:00:00 2001 From: ShreySinha02 Date: Thu, 15 Feb 2024 16:04:27 +0530 Subject: [PATCH] raw string \f --- fastapi/routing.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fastapi/routing.py b/fastapi/routing.py index acebabfca..4d71239c6 100644 --- a/fastapi/routing.py +++ b/fastapi/routing.py @@ -1,4 +1,5 @@ import asyncio +import codecs import dataclasses import email.message import inspect @@ -502,6 +503,7 @@ class APIRoute(routing.Route): self.secure_cloned_response_field = None self.dependencies = list(dependencies or []) self.description = description or inspect.cleandoc(self.endpoint.__doc__ or "") + self.description = codecs.decode(self.description, "unicode_escape") # if a "form feed" character (page break) is found in the description text, # truncate description text to the content preceding the first "form feed" self.description = self.description.split("\f")[0].strip()