File: _cquoting.pyi

package info (click to toggle)
python-skytools 3.9.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 620 kB
  • sloc: python: 6,394; ansic: 929; makefile: 38; awk: 14
file content (11 lines) | stat: -rw-r--r-- 420 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11

from typing import Any, Optional, Mapping, Dict

def quote_literal(value: Any) -> str: ...
def quote_copy(value: Any) -> str: ...
def quote_bytea_raw(s: Optional[bytes]) -> Optional[str]: ...
def db_urlencode(dict_val: Mapping[str, Any]) -> str: ...
def db_urldecode(qs: str) -> Dict[str, Optional[str]]: ...
def unescape(val: str) -> str: ...
def unquote_literal(val: str, stdstr: bool = False) -> Optional[str]: ...