Lines Matching refs:standard
11 distributed with the Python standard library, but are available from
846 The subclass DefaultCookiePolicy defines the standard rules for Netscape
875 """Implements the standard rules for accepting and returning cookies."""
1395 Tuples are name, value, standard, rest, where name and value are the
1396 cookie name and value, standard is a dictionary containing the standard
1413 # Build dictionary of standard cookie-attributes (standard) and
1425 standard = {}
1436 if k in standard:
1475 standard[k] = v
1482 cookie_tuples.append((name, value, standard, rest))
1487 # standard is dict of standard cookie-attributes, rest is dict of the
1489 name, value, standard, rest = tup
1491 domain = standard.get("domain", Absent)
1492 path = standard.get("path", Absent)
1493 port = standard.get("port", Absent)
1494 expires = standard.get("expires", Absent)
1497 version = standard.get("version", None)
1503 secure = standard.get("secure", False)
1505 discard = standard.get("discard", False)
1506 comment = standard.get("comment", None)
1507 comment_url = standard.get("commenturl", None)
1930 standard = {}
1933 standard[k] = False
1944 standard[k] = v
1946 standard[k] = v
1950 h = standard.get