Update markupsafe==2.1.2

This commit is contained in:
JonnyWong16 2023-03-02 20:13:30 -08:00
commit e0ffbf2d8d
No known key found for this signature in database
GPG key ID: B1F1F9807184697A

View file

@ -11,10 +11,10 @@ if t.TYPE_CHECKING:
pass pass
__version__ = "2.1.1" __version__ = "2.1.2"
_strip_comments_re = re.compile(r"<!--.*?-->") _strip_comments_re = re.compile(r"<!--.*?-->", re.DOTALL)
_strip_tags_re = re.compile(r"<.*?>") _strip_tags_re = re.compile(r"<.*?>", re.DOTALL)
def _simple_escaping_wrapper(name: str) -> t.Callable[..., "Markup"]: def _simple_escaping_wrapper(name: str) -> t.Callable[..., "Markup"]: