flask-test/lib/python3.10/site-packages/markupsafe/_speedups.pyi
2022-09-10 23:26:07 +01:00

10 lines
229 B
Python

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: ...