You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
229B

  1. from typing import Any
  2. from typing import Optional
  3. from . import Markup
  4. def escape(s: Any) -> Markup: ...
  5. def escape_silent(s: Optional[Any]) -> Markup: ...
  6. def soft_str(s: Any) -> str: ...
  7. def soft_unicode(s: Any) -> str: ...