Lines Matching refs:datetime
8 Various date and time objects are supplied by the :mod:`datetime` module.
9 Before using any of these functions, the header file :file:`datetime.h` must be
82 Return a ``datetime.date`` object with the specified year, month and day.
87 Return a ``datetime.datetime`` object with the specified year, month, day, hour,
93 Return a ``datetime.time`` object with the specified hour, minute, second and
99 Return a ``datetime.timedelta`` object representing the given number of days,
102 ``datetime.timedelta`` objects.
125 Macros to extract fields from datetime objects. The argument must be an
202 Create and return a new ``datetime.datetime`` object given an argument tuple
203 suitable for passing to ``datetime.datetime.fromtimestamp()``.
208 Create and return a new ``datetime.date`` object given an argument tuple
209 suitable for passing to ``datetime.date.fromtimestamp()``.