HomeSort by relevance Sort by last modified time
    Searched defs:CookieError (Results 1 - 7 of 7) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Cookie.py 222 __all__ = ["CookieError","BaseCookie","SimpleCookie","SerialCookie",
232 class CookieError(Exception):
444 raise CookieError("Invalid Attribute %s" % K)
458 raise CookieError("Attempt to set a reserved key: %s" % key)
460 raise CookieError("Illegal key value: %s" % key)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
Cookie.py 222 __all__ = ["CookieError","BaseCookie","SimpleCookie","SerialCookie",
232 class CookieError(Exception):
444 raise CookieError("Invalid Attribute %s" % K)
458 raise CookieError("Attempt to set a reserved key: %s" % key)
460 raise CookieError("Illegal key value: %s" % key)
  /prebuilts/gdb/linux-x86/lib/python2.7/
Cookie.py 222 __all__ = ["CookieError","BaseCookie","SimpleCookie","SerialCookie",
232 class CookieError(Exception):
444 raise CookieError("Invalid Attribute %s" % K)
458 raise CookieError("Attempt to set a reserved key: %s" % key)
460 raise CookieError("Illegal key value: %s" % key)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
Cookie.py 222 __all__ = ["CookieError","BaseCookie","SimpleCookie","SerialCookie",
232 class CookieError(Exception):
444 raise CookieError("Invalid Attribute %s" % K)
458 raise CookieError("Attempt to set a reserved key: %s" % key)
460 raise CookieError("Illegal key value: %s" % key)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
Cookie.py 222 __all__ = ["CookieError","BaseCookie","SimpleCookie","SerialCookie",
232 class CookieError(Exception):
444 raise CookieError("Invalid Attribute %s" % K)
458 raise CookieError("Attempt to set a reserved key: %s" % key)
460 raise CookieError("Illegal key value: %s" % key)
  /external/python/cpython2/Lib/
Cookie.py 219 __all__ = ["CookieError","BaseCookie","SimpleCookie","SerialCookie",
229 class CookieError(Exception):
443 raise CookieError("Invalid Attribute %s" % K)
457 raise CookieError("Attempt to set a reserved key: %s" % key)
459 raise CookieError("Illegal key value: %s" % key)
  /external/python/cpython3/Lib/http/
cookies.py 135 __all__ = ["CookieError", "BaseCookie", "SimpleCookie"]
150 class CookieError(Exception):
332 raise CookieError("Invalid attribute %r" % (K,))
338 raise CookieError("Invalid attribute %r" % (key,))
362 raise CookieError("Invalid attribute %r" % (key,))
378 raise CookieError('Attempt to set a reserved key %r' % (key,))
380 raise CookieError('Illegal key %r' % (key,))

Completed in 394 milliseconds