Lines Matching refs:standard
11 distributed with the Python standard library, but are available from
810 The subclass DefaultCookiePolicy defines the standard rules for Netscape
839 """Implements the standard rules for accepting and returning cookies."""
1351 Tuples are name, value, standard, rest, where name and value are the
1352 cookie name and value, standard is a dictionary containing the standard
1369 # Build dictionary of standard cookie-attributes (standard) and
1381 standard = {}
1392 if k in standard:
1431 standard[k] = v
1438 cookie_tuples.append((name, value, standard, rest))
1443 # standard is dict of standard cookie-attributes, rest is dict of the
1445 name, value, standard, rest = tup
1447 domain = standard.get("domain", Absent)
1448 path = standard.get("path", Absent)
1449 port = standard.get("port", Absent)
1450 expires = standard.get("expires", Absent)
1453 version = standard.get("version", None)
1459 secure = standard.get("secure", False)
1461 discard = standard.get("discard", False)
1462 comment = standard.get("comment", None)
1463 comment_url = standard.get("commenturl", None)