Home | History | Annotate | Download | only in python2.7

Lines Matching defs:Absent

235     absent.
1197 # Used as second parameter to dict.get() method, to distinguish absent
1199 class Absent: pass
1447 domain = standard.get("domain", Absent)
1448 path = standard.get("path", Absent)
1449 port = standard.get("port", Absent)
1450 expires = standard.get("expires", Absent)
1460 # (discard is also set if expires is Absent)
1466 if path is not Absent and path != "":
1482 domain_specified = domain is not Absent
1487 if domain is Absent:
1495 if port is not Absent:
1508 if expires is Absent: