Home
last modified time | relevance | path

Searched refs:_LegalChars (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Lib/
DCookie.py244 _LegalChars = string.ascii_letters + string.digits + "!#$%&'*+-.^_`|~" variable
312 def _quote(str, LegalChars=_LegalChars,
452 LegalChars=_LegalChars,
/external/python/cpython3/Lib/http/
Dcookies.py161 _LegalChars = string.ascii_letters + string.digits + "!#$%&'*+-.^_`|~:" variable
162 _UnescapedChars = _LegalChars + ' ()/<=>?@[]{}'
171 _is_legal_key = re.compile('[%s]+' % re.escape(_LegalChars)).fullmatch