HTTPDate¶
from panda3d.core import HTTPDate
-
class
HTTPDate
¶ A container for an HTTP-legal time/date indication. This can accept a string from an HTTP header and will decode it into a C time_t value; conversely, it can accept a time_t value and encode it for output as a string.
Inheritance diagram
-
__init__
()¶
-
__init__
(copy: HTTPDate)
-
__init__
(format: str) Decodes the string into a sensible date. Returns 0 (!is_valid()) if the string cannot be correctly decoded.
-
__init__
(time: int)
-
compareTo
(other: HTTPDate) → int¶ Returns a number less than zero if this
HTTPDate
sorts before the other one, greater than zero if it sorts after, or zero if they are equivalent.
-