Revert "Remove MarkupSafe-2.0.1"

This reverts commit 5eb5fe8fba.
This commit is contained in:
JonnyWong16 2021-10-15 09:07:21 -07:00
commit 2916749360
No known key found for this signature in database
GPG key ID: B1F1F9807184697A
5 changed files with 373 additions and 0 deletions

View file

@ -0,0 +1,9 @@
from typing import Any
from typing import Optional
from . import Markup
def escape(s: Any) -> Markup: ...
def escape_silent(s: Optional[Any]) -> Markup: ...
def soft_str(s: Any) -> str: ...
def soft_unicode(s: Any) -> str: ...