Home
last modified time | relevance | path

Searched refs:_quote (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Lib/http/
Dcookies.py174 def _quote(str): function
413 append("%s=%s" % (self._reserved[key], _quote(value)))
612 return strval, _quote(strval)
/third_party/node/tools/gyp/pylib/gyp/
Dcommon.py243 _quote = re.compile("[\t\n #$%&'()*;<=>?[{|}~]|^$") variable
285 if _quote.search(argument):
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
Dcommon.py237 _quote = re.compile('[\t\n #$%&\'()*;<=>?[{|}~]|^$') variable
278 if _quote.search(argument):
/third_party/python/Lib/
Dimaplib.py610 typ, dat = self._simple_command('LOGIN', user, self._quote(password))
1220 def _quote(self, arg): member in IMAP4