| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | % XXX what order should the types be discussed in?
 | 
					
						
							| 
									
										
										
										
											2002-12-30 20:52:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | \section{\module{datetime} --- | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  |          Basic date and time types} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \declaremodule{builtin}{datetime} | 
					
						
							|  |  |  | \modulesynopsis{Basic date and time types.} | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | \moduleauthor{Tim Peters}{tim@zope.com} | 
					
						
							|  |  |  | \sectionauthor{Tim Peters}{tim@zope.com} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | \sectionauthor{A.M. Kuchling}{amk@amk.ca} | 
					
						
							| 
									
										
										
										
											2002-12-30 20:01:24 +00:00
										 |  |  | \sectionauthor{Raymond D. Hettinger}{python@rcn.com} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \versionadded{2.3} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The \module{datetime} module supplies classes for manipulating dates | 
					
						
							|  |  |  | and times in both simple and complex ways.  While date and time | 
					
						
							|  |  |  | arithmetic is supported, the focus of the implementation is on | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | efficient member extraction, for output formatting and manipulation. | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 21:26:42 +00:00
										 |  |  | There are two kinds of date and time objects: ``naive'' and ``aware''. | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | This distinction refers to whether the object has any notion of time | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | zone, daylight saving time, or other kind of algorithmic or political | 
					
						
							|  |  |  | time adjustment.  Whether a naive \class{datetime} object represents | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | Coordinated Universal Time (UTC), local time, or time in some other | 
					
						
							|  |  |  | timezone is purely up to the program, just like it's up to the program | 
					
						
							| 
									
										
										
										
											2002-12-30 21:26:42 +00:00
										 |  |  | whether a particular number represents meters, miles, or mass.  Naive | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | \class{datetime} objects are easy to understand and to work with, at | 
					
						
							|  |  |  | the cost of ignoring some aspects of reality. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | For applications requiring more, \class{datetime} and \class{time} objects | 
					
						
							|  |  |  | have an optional time zone information member. | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | These \class{tzinfo} objects capture information about the offset from | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | UTC time, the time zone name, and whether Daylight Saving Time is in | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | effect.  Note that no concrete \class{tzinfo} classes are supplied by | 
					
						
							|  |  |  | the \module{datetime} module.  Instead, they provide a framework for | 
					
						
							|  |  |  | incorporating the level of detail an app may require.  The rules for | 
					
						
							|  |  |  | time adjustment across the world are more political than rational, and | 
					
						
							|  |  |  | there is no standard suitable for every app. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The \module{datetime} module exports the following constants: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{datadesc}{MINYEAR} | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   The smallest year number allowed in a \class{date} or | 
					
						
							|  |  |  |   \class{datetime} object.  \constant{MINYEAR} | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  |   is \code{1}. | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | \end{datadesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{datadesc}{MAXYEAR} | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   The largest year number allowed in a \class{date} or \class{datetime} | 
					
						
							|  |  |  |   object.  \constant{MAXYEAR} is \code{9999}. | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | \end{datadesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 20:01:24 +00:00
										 |  |  | \begin{seealso} | 
					
						
							| 
									
										
										
										
											2002-12-31 16:37:03 +00:00
										 |  |  |   \seemodule{calendar}{General calendar related functions.} | 
					
						
							| 
									
										
										
										
											2002-12-30 20:01:24 +00:00
										 |  |  |   \seemodule{time}{Time access and conversions.} | 
					
						
							|  |  |  | \end{seealso} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | \subsection{Available Types} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | \begin{classdesc*}{date} | 
					
						
							| 
									
										
										
										
											2002-12-30 21:26:42 +00:00
										 |  |  |   An idealized naive date, assuming the current Gregorian calendar | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  |   always was, and always will be, in effect. | 
					
						
							|  |  |  |   Attributes: \member{year}, \member{month}, and \member{day}. | 
					
						
							|  |  |  | \end{classdesc*} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{classdesc*}{time} | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   An idealized time, independent of any particular day, assuming | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  |   that every day has exactly 24*60*60 seconds (there is no notion | 
					
						
							|  |  |  |   of "leap seconds" here). | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   Attributes: \member{hour}, \member{minute}, \member{second}, | 
					
						
							|  |  |  |               \member{microsecond}, and \member{tzinfo}. | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | \end{classdesc*} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{classdesc*}{datetime} | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   A combination of a naive date and a time. | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  |   Attributes: \member{year}, \member{month}, \member{day}, | 
					
						
							|  |  |  |               \member{hour}, \member{minute}, \member{second}, | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |               \member{microsecond}, and \member{tzinfo}. | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | \end{classdesc*} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{classdesc*}{timedelta} | 
					
						
							|  |  |  |   A duration, expressing the difference between two \class{date}, | 
					
						
							|  |  |  |   \class{time}, or \class{datetime} instances, to microsecond | 
					
						
							|  |  |  |   resolution. | 
					
						
							|  |  |  | \end{classdesc*} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{classdesc*}{tzinfo} | 
					
						
							|  |  |  |   An abstract base class for time zone information objects.  These | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   are used by the  \class{datetime} and \class{time} classes to | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  |   provided a customizable notion of time adjustment (for example, to | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   account for time zone and/or daylight saving time). | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | \end{classdesc*} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Objects of these types are immutable. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | Objects of the \class{date} type are always naive. | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | An object \var{d} of type \class{time} or \class{datetime} may be | 
					
						
							| 
									
										
										
										
											2002-12-30 21:26:42 +00:00
										 |  |  | naive or aware.  \var{d} is aware if \code{\var{d}.tzinfo} is not | 
					
						
							|  |  |  | \code{None}, and \code{\var{d}.tzinfo.utcoffset(\var{d})} does not return | 
					
						
							|  |  |  | \code{None}.  If \code{\var{d}.tzinfo} is \code{None}, or if | 
					
						
							|  |  |  | \code{\var{d}.tzinfo} is not \code{None} but | 
					
						
							|  |  |  | \code{\var{d}.tzinfo.utcoffset(\var{d})} returns \code{None}, \var{d} | 
					
						
							|  |  |  | is naive. | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 21:26:42 +00:00
										 |  |  | The distinction between naive and aware doesn't apply to | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | \code{timedelta} objects. | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | Subclass relationships: | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | \begin{verbatim} | 
					
						
							|  |  |  | object | 
					
						
							|  |  |  |     timedelta | 
					
						
							|  |  |  |     tzinfo | 
					
						
							|  |  |  |     time | 
					
						
							|  |  |  |     date | 
					
						
							|  |  |  |         datetime | 
					
						
							|  |  |  | \end{verbatim} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 20:01:24 +00:00
										 |  |  | \subsection{\class{timedelta} Objects \label{datetime-timedelta}} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | A \class{timedelta} object represents a duration, the difference | 
					
						
							|  |  |  | between two dates or times. | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 18:31:48 +00:00
										 |  |  | \begin{classdesc}{timedelta}{days=0, seconds=0, microseconds=0, | 
					
						
							|  |  |  |                              milliseconds=0, minutes=0, hours=0, weeks=0} | 
					
						
							| 
									
										
										
										
											2002-12-31 17:24:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   All arguments are optional.  Arguments may be ints, longs, or floats, | 
					
						
							|  |  |  |   and may be positive or negative. | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Only \var{days}, \var{seconds} and \var{microseconds} are stored | 
					
						
							|  |  |  |   internally.  Arguments are converted to those units: | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 20:01:24 +00:00
										 |  |  | \begin{verbatim} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  | A millisecond is converted to 1000 microseconds. | 
					
						
							|  |  |  | A minute is converted to 60 seconds. | 
					
						
							|  |  |  | An hour is converted to 3600 seconds. | 
					
						
							|  |  |  | A week is converted to 7 days. | 
					
						
							| 
									
										
										
										
											2002-12-30 20:01:24 +00:00
										 |  |  | \end{verbatim} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   and days, seconds and microseconds are then normalized so that the | 
					
						
							|  |  |  |   representation is unique, with | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{itemize} | 
					
						
							|  |  |  |   \item \code{0 <= \var{microseconds} < 1000000} | 
					
						
							|  |  |  |   \item \code{0 <= \var{seconds} < 3600*24} (the number of seconds in one day) | 
					
						
							|  |  |  |   \item \code{-999999999 <= \var{days} <= 999999999} | 
					
						
							|  |  |  | \end{itemize} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   If any argument is a float, and there are fractional microseconds, | 
					
						
							|  |  |  |   the fractional microseconds left over from all arguments are combined | 
					
						
							|  |  |  |   and their sum is rounded to the nearest microsecond.  If no | 
					
						
							|  |  |  |   argument is a float, the conversion and normalization processes | 
					
						
							|  |  |  |   are exact (no information is lost). | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   If the normalized value of days lies outside the indicated range, | 
					
						
							|  |  |  |   \exception{OverflowError} is raised. | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Note that normalization of negative values may be surprising at first. | 
					
						
							|  |  |  |   For example, | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | \begin{verbatim} | 
					
						
							|  |  |  | >>> d = timedelta(microseconds=-1) | 
					
						
							|  |  |  | >>> (d.days, d.seconds, d.microseconds) | 
					
						
							|  |  |  | (-1, 86399, 999999) | 
					
						
							|  |  |  | \end{verbatim} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:31:48 +00:00
										 |  |  | \end{classdesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | Class attributes are: | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 18:31:48 +00:00
										 |  |  | \begin{memberdesc}{min} | 
					
						
							|  |  |  |   The most negative \class{timedelta} object, | 
					
						
							|  |  |  |   \code{timedelta(-999999999)}. | 
					
						
							|  |  |  | \end{memberdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{memberdesc}{max} | 
					
						
							|  |  |  |   The most positive \class{timedelta} object, | 
					
						
							|  |  |  |   \code{timedelta(days=999999999, hours=23, minutes=59, seconds=59, | 
					
						
							|  |  |  |                   microseconds=999999)}. | 
					
						
							|  |  |  | \end{memberdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{memberdesc}{resolution} | 
					
						
							|  |  |  |   The smallest possible difference between non-equal | 
					
						
							|  |  |  |   \class{timedelta} objects, \code{timedelta(microseconds=1)}. | 
					
						
							|  |  |  | \end{memberdesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 21:26:42 +00:00
										 |  |  | Note that, because of normalization, \code{timedelta.max} \textgreater | 
					
						
							|  |  |  | \code{-timedelta.min}.  \code{-timedelta.max} is not representable as | 
					
						
							|  |  |  | a \class{timedelta} object. | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Instance attributes (read-only): | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 20:01:24 +00:00
										 |  |  | \begin{tableii}{c|l}{code}{Attribute}{Value} | 
					
						
							|  |  |  |   \lineii{days}{Between -999999999 and 999999999 inclusive} | 
					
						
							|  |  |  |   \lineii{seconds}{Between 0 and 86399 inclusive} | 
					
						
							|  |  |  |   \lineii{microseconds}{Between 0 and 999999 inclusive} | 
					
						
							|  |  |  | \end{tableii} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Supported operations: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 20:01:24 +00:00
										 |  |  | \begin{tableiii}{c|l|c}{code}{Operation}{Result}{Notes} | 
					
						
							| 
									
										
										
										
											2002-12-30 20:35:32 +00:00
										 |  |  |   \lineiii{\var{t1} = \var{t2} + \var{t3}} | 
					
						
							| 
									
										
										
										
											2002-12-31 16:01:47 +00:00
										 |  |  |           {Sum of \var{t2} and \var{t3}. | 
					
						
							| 
									
										
										
										
											2002-12-30 20:35:32 +00:00
										 |  |  |            Afterwards \var{t1}-\var{t2} == \var{t3} and \var{t1}-\var{t3} | 
					
						
							|  |  |  |            == \var{t2} are true.} | 
					
						
							|  |  |  |           {(1)} | 
					
						
							|  |  |  |   \lineiii{\var{t1} = \var{t2} - \var{t3}} | 
					
						
							|  |  |  |           {Difference of \var{t2} and \var{t3}. Afterwards \var{t1} == | 
					
						
							|  |  |  |            \var{t2} - \var{t3} and \var{t2} == \var{t1} + \var{t3} are | 
					
						
							|  |  |  |            true.} | 
					
						
							|  |  |  |           {(1)} | 
					
						
							|  |  |  |   \lineiii{\var{t1} = \var{t2} * \var{i} or \var{t1} = \var{i} * \var{t2}} | 
					
						
							|  |  |  |           {Delta multiplied by an integer or long. | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |            Afterwards \var{t1} // i == \var{t2} is true, | 
					
						
							|  |  |  |            provided \code{i != 0}. | 
					
						
							| 
									
										
										
										
											2002-12-30 20:35:32 +00:00
										 |  |  |            In general, \var{t1} * i == \var{t1} * (i-1) + \var{t1} is true.} | 
					
						
							|  |  |  |           {(1)} | 
					
						
							|  |  |  |   \lineiii{\var{t1} = \var{t2} // \var{i}} | 
					
						
							|  |  |  |           {The floor is computed and the remainder (if any) is thrown away.} | 
					
						
							| 
									
										
										
										
											2003-01-02 21:28:08 +00:00
										 |  |  |           {(3)} | 
					
						
							| 
									
										
										
										
											2002-12-31 14:26:54 +00:00
										 |  |  |   \lineiii{+\var{t1}} | 
					
						
							| 
									
										
										
										
											2002-12-31 16:30:49 +00:00
										 |  |  |           {Returns a \class{timedelta} object with the same value.} | 
					
						
							| 
									
										
										
										
											2003-01-02 21:28:08 +00:00
										 |  |  |           {(2)} | 
					
						
							| 
									
										
										
										
											2002-12-31 14:26:54 +00:00
										 |  |  |   \lineiii{-\var{t1}} | 
					
						
							| 
									
										
										
										
											2002-12-31 16:30:49 +00:00
										 |  |  |           {equivalent to \class{timedelta}(-\var{t1.days}, -\var{t1.seconds}, | 
					
						
							|  |  |  |            -\var{t1.microseconds}),and to \var{t1}* -1.} | 
					
						
							| 
									
										
										
										
											2003-01-02 21:28:08 +00:00
										 |  |  |           {(1)(4)} | 
					
						
							| 
									
										
										
										
											2002-12-31 14:26:54 +00:00
										 |  |  |   \lineiii{abs(\var{t})} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |           {equivalent to +\var{t} when \code{t.days >= 0}, and to | 
					
						
							| 
									
										
										
										
											2003-01-02 21:28:08 +00:00
										 |  |  |            -\var{t} when \code{t.days < 0}. | 
					
						
							|  |  |  |            overflow.} | 
					
						
							|  |  |  |           {(2)} | 
					
						
							| 
									
										
										
										
											2002-12-30 20:35:32 +00:00
										 |  |  | \end{tableiii} | 
					
						
							| 
									
										
										
										
											2002-12-30 20:01:24 +00:00
										 |  |  | \noindent | 
					
						
							|  |  |  | Notes: | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 20:01:24 +00:00
										 |  |  | \begin{description} | 
					
						
							|  |  |  | \item[(1)] | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   This is exact, but may overflow. | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 20:01:24 +00:00
										 |  |  | \item[(2)] | 
					
						
							| 
									
										
										
										
											2003-01-02 21:28:08 +00:00
										 |  |  |   This is exact, and cannot overflow. | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 14:26:54 +00:00
										 |  |  | \item[(3)] | 
					
						
							| 
									
										
										
										
											2003-01-02 21:28:08 +00:00
										 |  |  |   Division by 0 raises \exception{ZeroDivisionError}. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \item[(4)] | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   -\var{timedelta.max} is not representable as a \class{timedelta} object. | 
					
						
							| 
									
										
										
										
											2002-12-31 14:26:54 +00:00
										 |  |  | \end{description} | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 14:26:54 +00:00
										 |  |  | In addition to the operations listed above \class{timedelta} objects | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | support certain additions and subtractions with \class{date} and | 
					
						
							|  |  |  | \class{datetime} objects (see below). | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 14:26:54 +00:00
										 |  |  | Comparisons of \class{timedelta} objects are supported with the | 
					
						
							|  |  |  | \class{timedelta} object representing the smaller duration considered | 
					
						
							|  |  |  | to be the smaller timedelta. | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 14:26:54 +00:00
										 |  |  | \class{timedelta} objects are hashable (usable as dictionary key), | 
					
						
							|  |  |  | support efficient pickling, and in Boolean contexts, a \class{timedelta} | 
					
						
							|  |  |  | object is considered to be true if and only if it isn't equal to | 
					
						
							|  |  |  | \code{timedelta(0)}. | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 20:01:24 +00:00
										 |  |  | \subsection{\class{date} Objects \label{datetime-date}} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | A \class{date} object represents a date (year, month and day) in an idealized | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | calendar, the current Gregorian calendar indefinitely extended in both | 
					
						
							|  |  |  | directions.  January 1 of year 1 is called day number 1, January 2 of year | 
					
						
							|  |  |  | 1 is called day number 2, and so on.  This matches the definition of the | 
					
						
							|  |  |  | "proleptic Gregorian" calendar in Dershowitz and Reingold's book | 
					
						
							| 
									
										
										
										
											2002-12-30 21:26:42 +00:00
										 |  |  | \citetitle{Calendrical Calculations}, where it's the base calendar for all | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | computations.  See the book for algorithms for converting between | 
					
						
							|  |  |  | proleptic Gregorian ordinals and many other calendar systems. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 18:31:48 +00:00
										 |  |  | \begin{classdesc}{date}{year, month, day} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   All arguments are required.  Arguments may be ints or longs, in the | 
					
						
							|  |  |  |   following ranges: | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   \begin{itemize} | 
					
						
							|  |  |  |     \item \code{MINYEAR <= \var{year} <= MAXYEAR} | 
					
						
							|  |  |  |     \item \code{1 <= \var{month} <= 12} | 
					
						
							|  |  |  |     \item \code{1 <= \var{day} <= number of days in the given month and year} | 
					
						
							|  |  |  |   \end{itemize} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   If an argument outside those ranges is given, \exception{ValueError} | 
					
						
							|  |  |  |   is raised. | 
					
						
							| 
									
										
										
										
											2002-12-31 18:31:48 +00:00
										 |  |  | \end{classdesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | Other constructors, all class methods: | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \begin{methoddesc}{today}{} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return the current local date.  This is equivalent to | 
					
						
							|  |  |  |   \code{date.fromtimestamp(time.time())}. | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \begin{methoddesc}{fromtimestamp}{timestamp} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return the local date corresponding to the POSIX timestamp, such | 
					
						
							|  |  |  |   as is returned by \function{time.time()}.  This may raise | 
					
						
							|  |  |  |   \exception{ValueError}, if the timestamp is out of the range of | 
					
						
							|  |  |  |   values supported by the platform C \cfunction{localtime()} | 
					
						
							|  |  |  |   function.  It's common for this to be restricted to years from 1970 | 
					
						
							| 
									
										
										
										
											2003-01-04 18:17:36 +00:00
										 |  |  |   through 2038.  Note that on non-POSIX systems that include leap | 
					
						
							|  |  |  |   seconds in their notion of a timestamp, leap seconds are ignored by | 
					
						
							|  |  |  |   \method{fromtimestamp()}. | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \begin{methoddesc}{fromordinal}{ordinal} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return the date corresponding to the proleptic Gregorian ordinal, | 
					
						
							|  |  |  |   where January 1 of year 1 has ordinal 1.  \exception{ValueError} is | 
					
						
							|  |  |  |   raised unless \code{1 <= \var{ordinal} <= date.max.toordinal()}. | 
					
						
							|  |  |  |   For any date \var{d}, \code{date.fromordinal(\var{d}.toordinal()) == | 
					
						
							|  |  |  |   \var{d}}. | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Class attributes: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \begin{memberdesc}{min} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   The earliest representable date, \code{date(MINYEAR, 1, 1)}. | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \begin{memberdesc}{max} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   The latest representable date, \code{date(MAXYEAR, 12, 31)}. | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \begin{memberdesc}{resolution} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   The smallest possible difference between non-equal date | 
					
						
							|  |  |  |   objects, \code{timedelta(days=1)}. | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Instance attributes (read-only): | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \begin{memberdesc}{year} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Between \constant{MINYEAR} and \constant{MAXYEAR} inclusive | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{memberdesc}{month} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Between 1 and 12 inclusive. | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{memberdesc}{day} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Between 1 and the number of days in the given month of the given | 
					
						
							|  |  |  |   year. | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Supported operations: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | \begin{itemize} | 
					
						
							|  |  |  |   \item | 
					
						
							|  |  |  |     date1 + timedelta -> date2 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  |     timedelta + date1 -> date2 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  |     date2 is timedelta.days days removed from the date1, moving forward | 
					
						
							|  |  |  |     in time if timedelta.days > 0, or backward if timedetla.days < 0. | 
					
						
							|  |  |  |     date2 - date1 == timedelta.days after.  timedelta.seconds and | 
					
						
							|  |  |  |     timedelta.microseconds are ignored.  \exception{OverflowError} is | 
					
						
							|  |  |  |     raised if date2.year would be smaller than \constant{MINYEAR} or | 
					
						
							|  |  |  |     larger than \constant{MAXYEAR}. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   \item | 
					
						
							|  |  |  |     date1 - timedelta -> date2 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  |     Computes the date2 such that date2 + timedelta == date1.  This | 
					
						
							|  |  |  |     isn't quite equivalent to date1 + (-timedelta), because -timedelta | 
					
						
							|  |  |  |     in isolation can overflow in cases where date1 - timedelta does | 
					
						
							|  |  |  |     not.  timedelta.seconds and timedelta.microseconds are ignored. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   \item | 
					
						
							|  |  |  |     date1 - date2 -> timedelta | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  |     This is exact, and cannot overflow.  timedelta.seconds and | 
					
						
							|  |  |  |     timedelta.microseconds are 0, and date2 + timedelta == date1 | 
					
						
							|  |  |  |     after. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   \item | 
					
						
							|  |  |  |     comparison of date to date, where date1 is considered less than | 
					
						
							|  |  |  |     date2 when date1 precedes date2 in time.  In other words, | 
					
						
							|  |  |  |     date1 < date2 if and only if date1.toordinal() < date2.toordinal(). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   \item | 
					
						
							|  |  |  |     hash, use as dict key | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   \item | 
					
						
							|  |  |  |     efficient pickling | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   \item | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  |     in Boolean contexts, all \class{date} objects are considered to be true | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | \end{itemize} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Instance methods: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \begin{methoddesc}{replace}{year, month, day} | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   Return a date with the same value, except for those members given | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   new values by whichever keyword arguments are specified.  For | 
					
						
							|  |  |  |   example, if \code{d == date(2002, 12, 31)}, then | 
					
						
							|  |  |  |   \code{d.replace(day=26) == date(2000, 12, 26)}. | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-24 05:41:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \begin{methoddesc}{timetuple}{} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return a 9-element tuple of the form returned by | 
					
						
							|  |  |  |   \function{time.localtime()}.  The hours, minutes and seconds are | 
					
						
							|  |  |  |   0, and the DST flag is -1. | 
					
						
							|  |  |  |   \code{\var{d}.timetuple()} is equivalent to | 
					
						
							|  |  |  |       \code{(\var{d}.year, \var{d}.month, \var{d}.day, | 
					
						
							|  |  |  |              0, 0, 0,  \# h, m, s | 
					
						
							|  |  |  |              \var{d}.weekday(),  \# 0 is Monday | 
					
						
							|  |  |  |              \var{d}.toordinal() - date(\var{d}.year, 1, 1).toordinal() + 1, | 
					
						
							|  |  |  |              \# day of year | 
					
						
							|  |  |  |             -1)} | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \begin{methoddesc}{toordinal}{} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return the proleptic Gregorian ordinal of the date, where January 1 | 
					
						
							|  |  |  |   of year 1 has ordinal 1.  For any \class{date} object \var{d}, | 
					
						
							|  |  |  |   \code{date.fromordinal(\var{d}.toordinal()) == \var{d}}. | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \begin{methoddesc}{weekday}{} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return the day of the week as an integer, where Monday is 0 and | 
					
						
							|  |  |  |   Sunday is 6.  For example, date(2002, 12, 4).weekday() == 2, a | 
					
						
							|  |  |  |   Wednesday. | 
					
						
							|  |  |  |   See also \method{isoweekday()}. | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \begin{methoddesc}{isoweekday}{} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return the day of the week as an integer, where Monday is 1 and | 
					
						
							|  |  |  |   Sunday is 7.  For example, date(2002, 12, 4).isoweekday() == 3, a | 
					
						
							|  |  |  |   Wednesday. | 
					
						
							|  |  |  |   See also \method{weekday()}, \method{isocalendar()}. | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \begin{methoddesc}{isocalendar}{} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return a 3-tuple, (ISO year, ISO week number, ISO weekday). | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   The ISO calendar is a widely used variant of the Gregorian calendar. | 
					
						
							|  |  |  |   See \url{http://www.phys.uu.nl/~vgent/calendar/isocalendar.htm} | 
					
						
							|  |  |  |   for a good explanation. | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   The ISO year consists of 52 or 53 full weeks, and where a week starts | 
					
						
							|  |  |  |   on a Monday and ends on a Sunday.  The first week of an ISO year is | 
					
						
							|  |  |  |   the first (Gregorian) calendar week of a year containing a Thursday. | 
					
						
							|  |  |  |   This is called week number 1, and the ISO year of that Thursday is | 
					
						
							|  |  |  |   the same as its Gregorian year. | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   For example, 2004 begins on a Thursday, so the first week of ISO | 
					
						
							|  |  |  |   year 2004 begins on Monday, 29 Dec 2003 and ends on Sunday, 4 Jan | 
					
						
							|  |  |  |   2004, so that | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   date(2003, 12, 29).isocalendar() == (2004, 1, 1) | 
					
						
							|  |  |  |   date(2004, 1, 4).isocalendar() == (2004, 1, 7) | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \begin{methoddesc}{isoformat}{} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return a string representing the date in ISO 8601 format, | 
					
						
							|  |  |  |   'YYYY-MM-DD'.  For example, | 
					
						
							|  |  |  |   date(2002, 12, 4).isoformat() == '2002-12-04'. | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \begin{methoddesc}{__str__}{} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   For a date \var{d}, \code{str(\var{d})} is equivalent to | 
					
						
							|  |  |  |   \code{\var{d}.isoformat()}. | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \begin{methoddesc}{ctime}{} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return a string representing the date, for example | 
					
						
							|  |  |  |   date(2002, 12, 4).ctime() == 'Wed Dec  4 00:00:00 2002'. | 
					
						
							|  |  |  |   \code{\var{d}.ctime()} is equivalent to | 
					
						
							|  |  |  |   \code{time.ctime(time.mktime(\var{d}.timetuple()))} | 
					
						
							|  |  |  |   on platforms where the native C \cfunction{ctime()} function | 
					
						
							|  |  |  |   (which \function{time.ctime()} invokes, but which | 
					
						
							|  |  |  |   \method{date.ctime()} does not invoke) conforms to the C standard. | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \begin{methoddesc}{strftime}{format} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return a string representing the date, controlled by an explicit | 
					
						
							|  |  |  |   format string.  Format codes referring to hours, minutes or seconds | 
					
						
							|  |  |  |   will see 0 values. | 
					
						
							|  |  |  |   See the section on \method{strftime()} behavior. | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 20:01:24 +00:00
										 |  |  | \subsection{\class{datetime} Objects \label{datetime-datetime}} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | A \class{datetime} object is a single object containing all the | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | information from a \class{date} object and a \class{time} object.  Like a | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \class{date} object, \class{datetime} assumes the current Gregorian | 
					
						
							|  |  |  | calendar extended in both directions; like a time object, | 
					
						
							|  |  |  | \class{datetime} assumes there are exactly 3600*24 seconds in every | 
					
						
							|  |  |  | day. | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | Constructor: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 18:31:48 +00:00
										 |  |  | \begin{classdesc}{datetime}{year, month, day, | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |                             hour=0, minute=0, second=0, microsecond=0, | 
					
						
							|  |  |  |                             tzinfo=None} | 
					
						
							|  |  |  |   The year, month and day arguments are required.  \var{tzinfo} may | 
					
						
							|  |  |  |   be \code{None}, or an instance of a \class{tzinfo} subclass.  The | 
					
						
							|  |  |  |   remaining arguments may be ints or longs, in the following ranges: | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   \begin{itemize} | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |     \item \code{MINYEAR <= \var{year} <= MAXYEAR} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |     \item \code{1 <= \var{month} <= 12} | 
					
						
							|  |  |  |     \item \code{1 <= \var{day} <= number of days in the given month and year} | 
					
						
							|  |  |  |     \item \code{0 <= \var{hour} < 24} | 
					
						
							|  |  |  |     \item \code{0 <= \var{minute} < 60} | 
					
						
							|  |  |  |     \item \code{0 <= \var{second} < 60} | 
					
						
							|  |  |  |     \item \code{0 <= \var{microsecond} < 1000000} | 
					
						
							|  |  |  |   \end{itemize} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   If an argument outside those ranges is given, | 
					
						
							|  |  |  |   \exception{ValueError} is raised. | 
					
						
							| 
									
										
										
										
											2002-12-31 18:31:48 +00:00
										 |  |  | \end{classdesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | Other constructors, all class methods: | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \begin{methoddesc}{today}{} | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   Return the current local datetime, with \member{tzinfo} \code{None}. | 
					
						
							|  |  |  |   This is equivalent to | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   \code{datetime.fromtimestamp(time.time())}. | 
					
						
							|  |  |  |   See also \method{now()}, \method{fromtimestamp()}. | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \begin{methoddesc}{now}{} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return the current local datetime.  This is like \method{today()}, | 
					
						
							|  |  |  |   but, if possible, supplies more precision than can be gotten from | 
					
						
							|  |  |  |   going through a \function{time.time()} timestamp (for example, | 
					
						
							|  |  |  |   this may be possible on platforms that supply the C | 
					
						
							|  |  |  |   \cfunction{gettimeofday()} function). | 
					
						
							|  |  |  |   See also \method{today()}, \method{utcnow()}. | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \begin{methoddesc}{utcnow}{} | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   Return the current UTC datetime, with \member{tzinfo} \code{None}. | 
					
						
							|  |  |  |   This is like \method{now()}, but | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   returns the current UTC date and time. | 
					
						
							|  |  |  |   See also \method{now()}. | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \begin{methoddesc}{fromtimestamp}{timestamp} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return the local \class{datetime} corresponding to the \POSIX{} | 
					
						
							|  |  |  |   timestamp, such as is returned by \function{time.time()}.  This | 
					
						
							|  |  |  |   may raise \exception{ValueError}, if the timestamp is out of the | 
					
						
							|  |  |  |   range of values supported by the platform C | 
					
						
							|  |  |  |   \cfunction{localtime()} function.  It's common for this to be | 
					
						
							|  |  |  |   restricted to years in 1970 through 2038. | 
					
						
							| 
									
										
										
										
											2003-01-04 18:17:36 +00:00
										 |  |  |   Note that on non-POSIX systems that include leap seconds in their | 
					
						
							|  |  |  |   notion of a timestamp, leap seconds are ignored by | 
					
						
							|  |  |  |   \method{fromtimestamp()}, and then it's possible to have two timestamps | 
					
						
							|  |  |  |   differing by a second that yield identical \class{datetime} objects. | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   See also \method{utcfromtimestamp()}. | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \begin{methoddesc}{utcfromtimestamp}{timestamp} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return the UTC \class{datetime} corresponding to the \POSIX{} | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   timestamp, with \member{tzinfo} \code{None}. | 
					
						
							|  |  |  |   This may raise \exception{ValueError}, if the | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   timestamp is out of the range of values supported by the platform | 
					
						
							|  |  |  |   C \cfunction{gmtime()} function.  It's common for this to be | 
					
						
							|  |  |  |   restricted to years in 1970 through 2038. | 
					
						
							|  |  |  |   See also \method{fromtimestamp()}. | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \begin{methoddesc}{fromordinal}{ordinal} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return the \class{datetime} corresponding to the proleptic | 
					
						
							|  |  |  |   Gregorian ordinal, where January 1 of year 1 has ordinal 1. | 
					
						
							|  |  |  |   \exception{ValueError} is raised unless 1 <= ordinal <= | 
					
						
							|  |  |  |   datetime.max.toordinal().  The hour, minute, second and | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   microsecond of the result are all 0, | 
					
						
							|  |  |  |   and \member{tzinfo} is \code{None}. | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \begin{methoddesc}{combine}{date, time} | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   Return a new \class{datetime} object whose date members are | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   equal to the given \class{date} object's, and whose time | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   and \member{tzinfo} members are equal to the given \class{time} object's. | 
					
						
							|  |  |  |   For any \class{datetime} object \var{d}, \code{\var{d} == | 
					
						
							|  |  |  |   datetime.combine(\var{d}.date(), \var{d}.timetz())}.  If date is a | 
					
						
							|  |  |  |   \class{datetime} object, its time and \member{tzinfo} members are | 
					
						
							|  |  |  |   ignored. | 
					
						
							|  |  |  |   \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Class attributes: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{memberdesc}{min} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   The earliest representable \class{datetime}, | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   \code{datetime(MINYEAR, 1, 1, tzinfo=None)}. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{memberdesc}{max} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   The latest representable \class{datetime}, | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   \code{datetime(MAXYEAR, 12, 31, 23, 59, 59, 999999, tzinfo=None)}. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{memberdesc}{resolution} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   The smallest possible difference between non-equal \class{datetime} | 
					
						
							|  |  |  |   objects, \code{timedelta(microseconds=1)}. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Instance attributes (read-only): | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{memberdesc}{year} | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   Between \constant{MINYEAR} and \constant{MAXYEAR} inclusive. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{memberdesc}{month} | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   Between 1 and 12 inclusive. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{memberdesc}{day} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Between 1 and the number of days in the given month of the given | 
					
						
							|  |  |  |   year. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{memberdesc}{hour} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   In \code{range(24)}. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{memberdesc}{minute} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   In \code{range(60)}. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{memberdesc}{second} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   In \code{range(60)}. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{memberdesc}{microsecond} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   In \code{range(1000000)}. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | \begin{memberdesc}{tzinfo} | 
					
						
							|  |  |  |   The object passed as the \var{tzinfo} argument to the | 
					
						
							|  |  |  |   \class{datetime} constructor, or \code{None} if none was passed. | 
					
						
							|  |  |  | \end{memberdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | Supported operations: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | \begin{itemize} | 
					
						
							|  |  |  |   \item | 
					
						
							|  |  |  |     datetime1 + timedelta -> datetime2 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  |     timedelta + datetime1 -> datetime2 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  |     datetime2 is a duration of timedelta removed from datetime1, moving | 
					
						
							|  |  |  |     forward in time if timedelta.days > 0, or backward if | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |     timedelta.days < 0.  The result has the same \member{tzinfo} member | 
					
						
							|  |  |  |     as the input datetime, and datetime2 - datetime1 == timedelta after. | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  |     \exception{OverflowError} is raised if datetime2.year would be | 
					
						
							|  |  |  |     smaller than \constant{MINYEAR} or larger than \constant{MAXYEAR}. | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |     Note that no time zone adjustments are done even if the input is an | 
					
						
							|  |  |  |     aware object. | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   \item | 
					
						
							|  |  |  |     datetime1 - timedelta -> datetime2 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  |     Computes the datetime2 such that datetime2 + timedelta == datetime1. | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |     As for addition, the result has the same \member{tzinfo} member | 
					
						
							|  |  |  |     as the input datetime, and no time zone adjustments are done even | 
					
						
							|  |  |  |     if the input is aware. | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  |     This isn't quite equivalent to datetime1 + (-timedelta), because | 
					
						
							|  |  |  |     -timedelta in isolation can overflow in cases where | 
					
						
							|  |  |  |     datetime1 - timedelta does not. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   \item | 
					
						
							|  |  |  |     datetime1 - datetime2 -> timedelta | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     Subtraction of a \class{datetime} from a | 
					
						
							|  |  |  |     \class{datetime} is defined only if both | 
					
						
							|  |  |  |     operands are naive, or if both are aware.  If one is aware and the | 
					
						
							|  |  |  |     other is naive, \exception{TypeError} is raised. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     If both are naive, or both are aware and have the same \member{tzinfo} | 
					
						
							|  |  |  |     member, the \member{tzinfo} members are ignored, and the result is | 
					
						
							|  |  |  |     a \class{timedelta} object \var{t} such that | 
					
						
							|  |  |  |     \code{\var{datetime2} + \var{t} == \var{datetime1}}.  No time zone | 
					
						
							|  |  |  |     adjustments are done in this case. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     If both are aware and have different \member{tzinfo} members, | 
					
						
							|  |  |  |     \code{a-b} acts as if \var{a} and \var{b} were first converted to | 
					
						
							|  |  |  |     naive UTC datetimes first.  The result is | 
					
						
							|  |  |  |     \code{(\var{a}.replace(tzinfo=None) - \var{a}.utcoffset()) - | 
					
						
							|  |  |  |           (\var{b}.replace(tzinfo=None) - \var{b}.utcoffset())} | 
					
						
							|  |  |  |     except that the implementation never overflows. | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   \item | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |     comparison of \class{datetime} to \class{datetime}, | 
					
						
							|  |  |  |     where \var{a} is considered less than \var{b} | 
					
						
							|  |  |  |     when \var{a} precedes \var{b} in time.  If one comparand is naive and | 
					
						
							|  |  |  |     the other is aware, \exception{TypeError} is raised.  If both | 
					
						
							|  |  |  |     comparands are aware, and have the same \member{tzinfo} member, | 
					
						
							|  |  |  |     the common \member{tzinfo} member is ignored and the base datetimes | 
					
						
							|  |  |  |     are compared.  If both comparands are aware and have different | 
					
						
							|  |  |  |     \member{tzinfo} members, the comparands are first adjusted by | 
					
						
							|  |  |  |     subtracting their UTC offsets (obtained from \code{self.utcoffset()}). | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   \item | 
					
						
							|  |  |  |     hash, use as dict key | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   \item | 
					
						
							|  |  |  |     efficient pickling | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   \item | 
					
						
							|  |  |  |     in Boolean contexts, all \class{datetime} objects are considered | 
					
						
							|  |  |  |     to be true | 
					
						
							|  |  |  | \end{itemize} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Instance methods: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{methoddesc}{date}{} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return \class{date} object with same year, month and day. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{methoddesc}{time}{} | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   Return \class{time} object with same hour, minute, second and microsecond. | 
					
						
							|  |  |  |   \member{tzinfo} is \code{None}.  See also method \method{timetz()}. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | \begin{methoddesc}{timetz}{} | 
					
						
							|  |  |  |   Return \class{time} object with same hour, minute, second, microsecond, | 
					
						
							|  |  |  |   and tzinfo members.  See also method \method{time()}. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{replace}{year=, month=, day=, hour=, minute=, second=, | 
					
						
							|  |  |  |                             microsecond=, tzinfo=} | 
					
						
							|  |  |  |   Return a datetime with the same members, except for those members given | 
					
						
							|  |  |  |   new values by whichever keyword arguments are specified.  Note that | 
					
						
							|  |  |  |   \code{tzinfo=None} can be specified to create a naive datetime from | 
					
						
							|  |  |  |   an aware datetime with no conversion of date and time members. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-24 05:41:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{methoddesc}{astimezone}{tz} | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   Return a \class{datetime} object with new \member{tzinfo} member | 
					
						
							|  |  |  |   \var{tz}. | 
					
						
							|  |  |  |   \var{tz} must be \code{None}, or an instance of a \class{tzinfo} subclass. | 
					
						
							|  |  |  |   If \var{tz} is \code{None}, \var{self} is naive, | 
					
						
							|  |  |  |   or \code{self.tzinfo}\ is \var{tz}, | 
					
						
							|  |  |  |   \code{self.astimezone(tz)} is equivalent to | 
					
						
							|  |  |  |   \code{self.replace(tzinfo=tz)}:  a new time zone object is attached | 
					
						
							|  |  |  |   without any conversion of date or time members.  Else \code{self.tzinfo} | 
					
						
							|  |  |  |   and \var{tz} must implement the \method{utcoffset()} and \method{dst()} | 
					
						
							|  |  |  |   \class{tzinfo} methods, and the date and time members are adjusted so | 
					
						
							|  |  |  |   that the result is local time in time zone \var{tz}, representing the | 
					
						
							|  |  |  |   same UTC time as \var{self}:  after \code{astz = dt.astimezone(tz)}, | 
					
						
							|  |  |  |   \code{astz - astz.utcoffset()} will usually have the same date and time | 
					
						
							|  |  |  |   members as \code{dt - dt.utcoffset()}.  The discussion of class | 
					
						
							|  |  |  |   \class{tzinfo} explains the cases at Daylight Saving Time | 
					
						
							|  |  |  |   transition boundaries where this cannot be achieved (an issue only if | 
					
						
							|  |  |  |   \var{tz} models both standard and daylight time). | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{utcoffset}{} | 
					
						
							|  |  |  |   If \member{tzinfo} is \code{None}, returns \code{None}, else | 
					
						
							|  |  |  |   returns \code{tzinfo.utcoffset(self)}. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{tzname}{} | 
					
						
							|  |  |  |   If \member{tzinfo} is \code{None}, returns \code{None}, else | 
					
						
							|  |  |  |   returns \code{tzinfo.tzname(self)}. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-25 07:40:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{methoddesc}{timetuple}{} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return a 9-element tuple of the form returned by | 
					
						
							|  |  |  |   \function{time.localtime()}. | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   \code{\var{d}.timetuple()} is equivalent to | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   \code{(\var{d}.year, \var{d}.month, \var{d}.day, | 
					
						
							|  |  |  |          \var{d}.hour, \var{d}.minute, \var{d}.second, | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |          \var{d}.weekday(), | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |          \var{d}.toordinal() - date(\var{d}.year, 1, 1).toordinal() + 1, | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |          dst)} | 
					
						
							|  |  |  |   The \member{tm_isdst} flag of the result is set according to | 
					
						
							|  |  |  |   the \method{dst()} method:  \member{tzinfo} is \code{None} or | 
					
						
							|  |  |  |   \method{dst()} returns \code{None}, | 
					
						
							|  |  |  |   \member{tm_isdst} is set to  \code{-1}; else if \method{dst()} returns | 
					
						
							|  |  |  |   a non-zero value, \member{tm_isdst} is set to \code{1}; | 
					
						
							|  |  |  |   else \code{tm_isdst} is set to \code{0}. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{utctimetuple}{} | 
					
						
							|  |  |  |   If \class{datetime} instance \var{d} is naive, this is the same as | 
					
						
							|  |  |  |   \code{\var{d}.timetuple()} except that \member{tm_isdst} is forced to 0 | 
					
						
							|  |  |  |   regardless of what \code{d.dst()} returns.  DST is never in effect | 
					
						
							|  |  |  |   for a UTC time. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   If \var{d} is aware, \var{d} is normalized to UTC time, by subtracting | 
					
						
							|  |  |  |   \code{\var{d}.utcoffset()}, and a timetuple for the | 
					
						
							|  |  |  |   normalized time is returned.  \member{tm_isdst} is forced to 0. | 
					
						
							|  |  |  |   Note that the result's \member{tm_year} member may be | 
					
						
							|  |  |  |   \constant{MINYEAR}-1 or \constant{MAXYEAR}+1, if \var{d}.year was | 
					
						
							|  |  |  |   \code{MINYEAR} or \code{MAXYEAR} and UTC adjustment spills over a | 
					
						
							|  |  |  |   year boundary. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{methoddesc}{toordinal}{} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return the proleptic Gregorian ordinal of the date.  The same as | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   \code{self.date().toordinal()}. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{methoddesc}{weekday}{} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return the day of the week as an integer, where Monday is 0 and | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   Sunday is 6.  The same as \code{self.date().weekday()}. | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   See also \method{isoweekday()}. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{methoddesc}{isoweekday}{} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return the day of the week as an integer, where Monday is 1 and | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   Sunday is 7.  The same as \code{self.date().isoweekday)}. | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   See also \method{weekday()}, \method{isocalendar()}. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{methoddesc}{isocalendar}{} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return a 3-tuple, (ISO year, ISO week number, ISO weekday).  The | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   same as \code{self.date().isocalendar()}. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{methoddesc}{isoformat}{sep='T'} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return a string representing the date and time in ISO 8601 format, | 
					
						
							|  |  |  |       YYYY-MM-DDTHH:MM:SS.mmmmmm | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   or, if \member{microsecond} is 0, | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |       YYYY-MM-DDTHH:MM:SS | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   If \method{utcoffset()} does not return \code{None}, a 6-character | 
					
						
							|  |  |  |   string is appended, giving the UTC offset in (signed) hours and | 
					
						
							|  |  |  |   minutes: | 
					
						
							|  |  |  |       YYYY-MM-DDTHH:MM:SS.mmmmmm+HH:MM | 
					
						
							|  |  |  |   or, if \member{microsecond} is 0 | 
					
						
							|  |  |  |       YYYY-MM-DDTHH:MM:SS+HH:MM | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   The optional argument \var{sep} (default \code{'T'}) is a | 
					
						
							|  |  |  |   one-character separator, placed between the date and time portions | 
					
						
							|  |  |  |   of the result.  For example, | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | \begin{verbatim} | 
					
						
							|  |  |  | >>> from datetime import tzinfo, timedelta, datetime | 
					
						
							|  |  |  | >>> class TZ(tzinfo): | 
					
						
							|  |  |  | ...     def utcoffset(self, dt): return timedelta(minutes=-399) | 
					
						
							|  |  |  | ... | 
					
						
							|  |  |  | >>> datetime(2002, 12, 25, tzinfo=TZ()).isoformat(' ') | 
					
						
							|  |  |  | '2002-12-25 00:00:00-06:39' | 
					
						
							|  |  |  | \end{verbatim} | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{methoddesc}{__str__}{} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   For a \class{datetime} instance \var{d}, \code{str(\var{d})} is | 
					
						
							|  |  |  |   equivalent to \code{\var{d}.isoformat(' ')}. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{methoddesc}{ctime}{} | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   Return a string representing the date and time, for example | 
					
						
							|  |  |  |   \code{datetime(2002, 12, 4, 20, 30, 40).ctime() == | 
					
						
							|  |  |  |    'Wed Dec  4 20:30:40 2002'}. | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   \code{d.ctime()} is equivalent to | 
					
						
							|  |  |  |   \code{time.ctime(time.mktime(d.timetuple()))} on platforms where | 
					
						
							|  |  |  |   the native C \cfunction{ctime()} function (which | 
					
						
							|  |  |  |   \function{time.ctime()} invokes, but which | 
					
						
							|  |  |  |   \method{datetime.ctime()} does not invoke) conforms to the C | 
					
						
							|  |  |  |   standard. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{methoddesc}{strftime}{format} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return a string representing the date and time, controlled by an | 
					
						
							|  |  |  |   explicit format string.  See the section on \method{strftime()} | 
					
						
							|  |  |  |   behavior. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 20:01:24 +00:00
										 |  |  | \subsection{\class{time} Objects \label{datetime-time}} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | A time object represents a (local) time of day, independent of any | 
					
						
							|  |  |  | particular day, and subject to adjustment via a \class{tzinfo} object. | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | \begin{classdesc}{time}{hour=0, minute=0, second=0, microsecond=0, | 
					
						
							|  |  |  |                         tzinfo=None} | 
					
						
							|  |  |  |   All arguments are optional.  \var{tzinfo} may be \code{None}, or | 
					
						
							|  |  |  |   an instance of a \class{tzinfo} subclass.  The remaining arguments | 
					
						
							|  |  |  |   may be ints or longs, in the following ranges: | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   \begin{itemize} | 
					
						
							|  |  |  |     \item \code{0 <= \var{hour} < 24} | 
					
						
							|  |  |  |     \item \code{0 <= \var{minute} < 60} | 
					
						
							|  |  |  |     \item \code{0 <= \var{second} < 60} | 
					
						
							|  |  |  |     \item \code{0 <= \var{microsecond} < 1000000}. | 
					
						
							|  |  |  |   \end{itemize} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   If an argument outside those ranges is given, | 
					
						
							|  |  |  |   \exception{ValueError} is raised. | 
					
						
							| 
									
										
										
										
											2002-12-31 18:31:48 +00:00
										 |  |  | \end{classdesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Class attributes: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{memberdesc}{min} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   The earliest representable \class{time}, \code{time(0, 0, 0, 0)}. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{memberdesc}{max} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   The latest representable \class{time}, \code{time(23, 59, 59, 999999)}. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{memberdesc}{resolution} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   The smallest possible difference between non-equal \class{time} | 
					
						
							|  |  |  |   objects, \code{timedelta(microseconds=1)}, although note that | 
					
						
							|  |  |  |   arithmetic on \class{time} objects is not supported. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Instance attributes (read-only): | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{memberdesc}{hour} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   In \code{range(24)}. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 20:52:32 +00:00
										 |  |  | \begin{memberdesc}{minute} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   In \code{range(60)}. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 20:52:32 +00:00
										 |  |  | \begin{memberdesc}{second} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   In \code{range(60)}. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 20:52:32 +00:00
										 |  |  | \begin{memberdesc}{microsecond} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   In \code{range(1000000)}. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{memberdesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | \begin{memberdesc}{tzinfo} | 
					
						
							|  |  |  |   The object passed as the tzinfo argument to the \class{time} | 
					
						
							|  |  |  |   constructor, or \code{None} if none was passed. | 
					
						
							|  |  |  | \end{memberdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | Supported operations: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | \begin{itemize} | 
					
						
							|  |  |  |   \item | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |     comparison of \class{time} to \class{time}, | 
					
						
							|  |  |  |     where \var{a} is considered less than \var{b} when \var{a} precedes | 
					
						
							|  |  |  |     \var{b} in time.  If one comparand is naive and the other is aware, | 
					
						
							|  |  |  |     \exception{TypeError} is raised.  If both comparands are aware, and | 
					
						
							|  |  |  |     have the same \member{tzinfo} member, the common \member{tzinfo} | 
					
						
							|  |  |  |     member is ignored and the base times are compared.  If both | 
					
						
							|  |  |  |     comparands are aware and have different \member{tzinfo} members, | 
					
						
							|  |  |  |     the comparands are first adjusted by subtracting their UTC offsets | 
					
						
							|  |  |  |     (obtained from \code{self.utcoffset()}). | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  |   \item | 
					
						
							|  |  |  |     hash, use as dict key | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  |   \item | 
					
						
							|  |  |  |     efficient pickling | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  |   \item | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |     in Boolean contexts, a \class{time} object is considered to be | 
					
						
							|  |  |  |     true if and only if, after converting it to minutes and | 
					
						
							|  |  |  |     subtracting \method{utcoffset()} (or \code{0} if that's | 
					
						
							|  |  |  |     \code{None}), the result is non-zero. | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | \end{itemize} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Instance methods: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | \begin{methoddesc}{replace}(hour=, minute=, second=, microsecond=, tzinfo=) | 
					
						
							|  |  |  |   Return a \class{time} with the same value, except for those members given | 
					
						
							|  |  |  |   new values by whichever keyword arguments are specified.  Note that | 
					
						
							|  |  |  |   \code{tzinfo=None} can be specified to create a naive \class{time} from | 
					
						
							|  |  |  |   an aware \class{time}, without conversion of the time members. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-24 05:41:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{methoddesc}{isoformat}{} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return a string representing the time in ISO 8601 format, | 
					
						
							|  |  |  |       HH:MM:SS.mmmmmm | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   or, if self.microsecond is 0, | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |       HH:MM:SS | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   If \method{utcoffset()} does not return \code{None}, a 6-character | 
					
						
							|  |  |  |   string is appended, giving the UTC offset in (signed) hours and | 
					
						
							|  |  |  |   minutes: | 
					
						
							|  |  |  |       HH:MM:SS.mmmmmm+HH:MM | 
					
						
							|  |  |  |   or, if self.microsecond is 0, | 
					
						
							|  |  |  |       HH:MM:SS+HH:MM | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{methoddesc}{__str__}{} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   For a time \var{t}, \code{str(\var{t})} is equivalent to | 
					
						
							|  |  |  |   \code{\var{t}.isoformat()}. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{methoddesc}{strftime}{format} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return a string representing the time, controlled by an explicit | 
					
						
							|  |  |  |   format string.  See the section on \method{strftime()} behavior. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | \begin{methoddesc}{utcoffset}{} | 
					
						
							|  |  |  |   If \member{tzinfo} is \code{None}, returns \code{None}, else | 
					
						
							|  |  |  |   returns \code{tzinfo.utcoffset(self)}. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{dst}{} | 
					
						
							|  |  |  |   If \member{tzinfo} is \code{None}, returns \code{None}, else | 
					
						
							|  |  |  |   returns \code{tzinfo.dst(self)}. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{tzname}{} | 
					
						
							|  |  |  |   If \member{tzinfo} is \code{None}, returns \code{None}, else | 
					
						
							|  |  |  |   returns \code{tzinfo.tzname(self)}. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 20:01:24 +00:00
										 |  |  | \subsection{\class{tzinfo} Objects \label{datetime-tzinfo}} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | \class{tzinfo} is an abstract base clase, meaning that this class | 
					
						
							|  |  |  | should not be instantiated directly.  You need to derive a concrete | 
					
						
							|  |  |  | subclass, and (at least) supply implementations of the standard | 
					
						
							|  |  |  | \class{tzinfo} methods needed by the \class{datetime} methods you | 
					
						
							| 
									
										
										
										
											2002-12-30 20:52:32 +00:00
										 |  |  | use.  The \module{datetime} module does not supply any concrete | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | subclasses of \class{tzinfo}. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | An instance of (a concrete subclass of) \class{tzinfo} can be passed | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | to the constructors for \class{datetime} and \class{time} objects. | 
					
						
							|  |  |  | The latter objects view their members as being in local time, and the | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | \class{tzinfo} object supports methods revealing offset of local time | 
					
						
							|  |  |  | from UTC, the name of the time zone, and DST offset, all relative to a | 
					
						
							|  |  |  | date or time object passed to them. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 20:52:32 +00:00
										 |  |  | Special requirement for pickling:  A \class{tzinfo} subclass must have an | 
					
						
							| 
									
										
										
										
											2002-12-24 16:30:58 +00:00
										 |  |  | \method{__init__} method that can be called with no arguments, else it | 
					
						
							|  |  |  | can be pickled but possibly not unpickled again.  This is a technical | 
					
						
							|  |  |  | requirement that may be relaxed in the future. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | A concrete subclass of \class{tzinfo} may need to implement the | 
					
						
							|  |  |  | following methods.  Exactly which methods are needed depends on the | 
					
						
							| 
									
										
										
										
											2002-12-30 20:52:32 +00:00
										 |  |  | uses made of aware \module{datetime} objects.  If in doubt, simply | 
					
						
							|  |  |  | implement all of them. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{methoddesc}{utcoffset}{self, dt} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   Return offset of local time from UTC, in minutes east of UTC.  If | 
					
						
							|  |  |  |   local time is west of UTC, this should be negative.  Note that this | 
					
						
							|  |  |  |   is intended to be the total offset from UTC; for example, if a | 
					
						
							|  |  |  |   \class{tzinfo} object represents both time zone and DST adjustments, | 
					
						
							|  |  |  |   \method{utcoffset()} should return their sum.  If the UTC offset | 
					
						
							|  |  |  |   isn't known, return \code{None}.  Else the value returned must be | 
					
						
							| 
									
										
										
										
											2003-01-02 21:28:08 +00:00
										 |  |  |   a \class{timedelta} object specifying a whole number of minutes in the | 
					
						
							|  |  |  |   range -1439 to 1439 inclusive (1440 = 24*60; the magnitude of the offset | 
					
						
							|  |  |  |   must be less than one day).  Most implementations of | 
					
						
							|  |  |  |   \method{utcoffset()} will probably look like one of these two: | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 20:52:32 +00:00
										 |  |  | \begin{verbatim} | 
					
						
							| 
									
										
										
										
											2003-01-01 21:51:37 +00:00
										 |  |  |     return CONSTANT                 # fixed-offset class | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |     return CONSTANT + self.dst(dt)  # daylight-aware class | 
					
						
							| 
									
										
										
										
											2002-12-31 04:39:05 +00:00
										 |  |  | \end{verbatim} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-02 19:35:54 +00:00
										 |  |  |     If \method{utcoffset()} does not return \code{None}, | 
					
						
							|  |  |  |     \method{dst()} should not return \code{None} either. | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-02 19:35:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 20:52:32 +00:00
										 |  |  | \begin{methoddesc}{dst}{self, dt} | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   Return the daylight saving time (DST) adjustment, in minutes east of | 
					
						
							| 
									
										
										
										
											2003-01-01 21:51:37 +00:00
										 |  |  |   UTC, or \code{None} if DST information isn't known.  Return \code{0} if | 
					
						
							|  |  |  |   DST is not in effect. | 
					
						
							| 
									
										
										
										
											2003-01-02 21:28:08 +00:00
										 |  |  |   If DST is in effect, return the offset as a | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   \class{timedelta} object (see \method{utcoffset()} for details). | 
					
						
							|  |  |  |   Note that DST offset, if applicable, has | 
					
						
							|  |  |  |   already been added to the UTC offset returned by | 
					
						
							|  |  |  |   \method{utcoffset()}, so there's no need to consult \method{dst()} | 
					
						
							|  |  |  |   unless you're interested in displaying DST info separately.  For | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   example, \method{datetime.timetuple()} calls its \member{tzinfo} | 
					
						
							| 
									
										
										
										
											2002-12-31 18:13:11 +00:00
										 |  |  |   member's \method{dst()} method to determine how the | 
					
						
							| 
									
										
										
										
											2003-01-01 21:51:37 +00:00
										 |  |  |   \member{tm_isdst} flag should be set, and | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   \method{datetime.astimezone()} calls \method{dst()} to account for | 
					
						
							| 
									
										
										
										
											2003-01-01 21:51:37 +00:00
										 |  |  |   DST changes when crossing time zones. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   An instance \var{tz} of a \class{tzinfo} subclass that models both | 
					
						
							|  |  |  |   standard and daylight times must be consistent in this sense: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       \code{tz.utcoffset(dt) - tz.dst(dt)} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   must return the same result for every \class{datetime} \var{dt} | 
					
						
							| 
									
										
										
										
											2003-01-04 06:03:15 +00:00
										 |  |  |   with \code{dt.tzinfo==tz}  For sane \class{tzinfo} subclasses, this | 
					
						
							|  |  |  |   expression yields the time zone's "standard offset", which should not | 
					
						
							|  |  |  |   depend on the date or the time, but only on geographic location.  The | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   implementation of \method{datetime.astimezone()} relies on this, but | 
					
						
							| 
									
										
										
										
											2003-01-04 06:03:15 +00:00
										 |  |  |   cannot detect violations; it's the programmer's responsibility to | 
					
						
							| 
									
										
										
										
											2003-01-01 21:51:37 +00:00
										 |  |  |   ensure it. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-02 19:35:54 +00:00
										 |  |  | \begin{methoddesc}{tzname}{self, dt} | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  |   Return the timezone name corresponding to the \class{datetime} | 
					
						
							|  |  |  |   object represented | 
					
						
							| 
									
										
										
										
											2003-01-02 19:35:54 +00:00
										 |  |  |   by \var{dt}, as a string.  Nothing about string names is defined by the | 
					
						
							|  |  |  |   \module{datetime} module, and there's no requirement that it mean anything | 
					
						
							|  |  |  |   in particular.  For example, "GMT", "UTC", "-500", "-5:00", "EDT", | 
					
						
							|  |  |  |   "US/Eastern", "America/New York" are all valid replies.  Return | 
					
						
							|  |  |  |   \code{None} if a string name isn't known.  Note that this is a method | 
					
						
							|  |  |  |   rather than a fixed string primarily because some \class{tzinfo} objects | 
					
						
							|  |  |  |   will wish to return different names depending on the specific value | 
					
						
							|  |  |  |   of \var{dt} passed, especially if the \class{tzinfo} class is | 
					
						
							|  |  |  |   accounting for daylight time. | 
					
						
							|  |  |  | \end{methoddesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \end{methoddesc} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | These methods are called by a \class{datetime} or \class{time} object, | 
					
						
							|  |  |  | in response to their methods of the same names.  A \class{datetime} | 
					
						
							|  |  |  | object passes itself as the argument, and a \class{time} object passes | 
					
						
							| 
									
										
										
										
											2002-12-30 20:52:32 +00:00
										 |  |  | \code{None} as the argument.  A \class{tzinfo} subclass's methods should | 
					
						
							|  |  |  | therefore be prepared to accept a \var{dt} argument of \code{None}, or of | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | class \class{datetime}. | 
					
						
							| 
									
										
										
										
											2002-12-30 20:52:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | When \code{None} is passed, it's up to the class designer to decide the | 
					
						
							|  |  |  | best response.  For example, returning \code{None} is appropriate if the | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | class wishes to say that time objects don't participate in the | 
					
						
							| 
									
										
										
										
											2002-12-30 20:52:32 +00:00
										 |  |  | \class{tzinfo} protocol.  In other applications, it may be more useful | 
					
						
							| 
									
										
										
										
											2002-12-31 14:26:54 +00:00
										 |  |  | for \code{utcoffset(None)} to return the standard UTC offset. | 
					
						
							| 
									
										
										
										
											2002-12-30 20:52:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | When a \class{datetime} object is passed in response to a | 
					
						
							|  |  |  | \class{datetime} method, \code{dt.tzinfo} is the same object as | 
					
						
							| 
									
										
										
										
											2002-12-30 20:52:32 +00:00
										 |  |  | \var{self}.  \class{tzinfo} methods can rely on this, unless | 
					
						
							|  |  |  | user code calls \class{tzinfo} methods directly.  The intent is that | 
					
						
							|  |  |  | the \class{tzinfo} methods interpret \var{dt} as being in local time, | 
					
						
							|  |  |  | and not need to worry about objects in other timezones. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | Example \class{tzinfo} classes: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 18:58:06 +00:00
										 |  |  | \verbatiminput{tzinfo-examples.py} | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-04 06:03:15 +00:00
										 |  |  | Note that there are unavoidable subtleties twice per year in a tzinfo | 
					
						
							|  |  |  | subclass accounting for both standard and daylight time, at the DST | 
					
						
							|  |  |  | transition points.  For concreteness, consider US Eastern (UTC -0500), | 
					
						
							|  |  |  | where EDT begins the minute after 1:59 (EST) on the first Sunday in | 
					
						
							|  |  |  | April, and ends the minute after 1:59 (EDT) on the last Sunday in October: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{verbatim} | 
					
						
							|  |  |  |     UTC   3:MM  4:MM  5:MM  6:MM  7:MM  8:MM | 
					
						
							|  |  |  |     EST  22:MM 23:MM  0:MM  1:MM  2:MM  3:MM | 
					
						
							|  |  |  |     EDT  23:MM  0:MM  1:MM  2:MM  3:MM  4:MM | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   start  22:MM 23:MM  0:MM  1:MM  3:MM  4:MM | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     end  23:MM  0:MM  1:MM  1:MM  2:MM  3:MM | 
					
						
							|  |  |  | \end{verbatim} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | When DST starts (the "start" line), the local wall clock leaps from 1:59 | 
					
						
							|  |  |  | to 3:00.  A wall time of the form 2:MM doesn't really make sense on that | 
					
						
							| 
									
										
										
										
											2003-01-04 18:17:36 +00:00
										 |  |  | day, so \code{astimezone(Eastern)} won't deliver a result with | 
					
						
							|  |  |  | \code{hour==2} on the | 
					
						
							|  |  |  | day DST begins.  How an Eastern instance chooses to interpret 2:MM on | 
					
						
							|  |  |  | that day is its business.  The example Eastern implementation above | 
					
						
							|  |  |  | chose to | 
					
						
							| 
									
										
										
										
											2003-01-04 06:03:15 +00:00
										 |  |  | consider it as a time in EDT, simply because it "looks like it's | 
					
						
							|  |  |  | after 2:00", and so synonymous with the EST 1:MM times on that day. | 
					
						
							|  |  |  | Your Eastern class may wish, for example, to raise an exception instead | 
					
						
							| 
									
										
										
										
											2003-01-04 18:17:36 +00:00
										 |  |  | when it sees a 2:MM time on the day EDT begins. | 
					
						
							| 
									
										
										
										
											2003-01-04 06:03:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | When DST ends (the "end" line), there's a potentially worse problem: | 
					
						
							| 
									
										
										
										
											2003-01-04 18:17:36 +00:00
										 |  |  | there's an hour that can't be spelled unambiguously in local wall time, the | 
					
						
							| 
									
										
										
										
											2003-01-04 06:03:15 +00:00
										 |  |  | hour beginning at the moment DST ends.  In this example, that's times of | 
					
						
							|  |  |  | the form 6:MM UTC on the day daylight time ends.  The local wall clock | 
					
						
							|  |  |  | leaps from 1:59 (daylight time) back to 1:00 (standard time) again. | 
					
						
							|  |  |  | 1:MM is taken as daylight time (it's "before 2:00"), so maps to 5:MM UTC. | 
					
						
							|  |  |  | 2:MM is taken as standard time (it's "after 2:00"), so maps to 7:MM UTC. | 
					
						
							|  |  |  | There is no local time that maps to 6:MM UTC on this day. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-04 18:17:36 +00:00
										 |  |  | Just as the wall clock does, \code{astimezone(Eastern)} maps both UTC | 
					
						
							|  |  |  | hours 5:MM | 
					
						
							| 
									
										
										
										
											2003-01-04 06:03:15 +00:00
										 |  |  | and 6:MM to Eastern hour 1:MM on this day.  However, this result is | 
					
						
							|  |  |  | ambiguous (there's no way for Eastern to know which repetition of 1:MM | 
					
						
							| 
									
										
										
										
											2003-01-04 18:17:36 +00:00
										 |  |  | is intended).  Applications that can't bear such ambiguity | 
					
						
							|  |  |  | should avoid using hybrid tzinfo classes; there are no | 
					
						
							| 
									
										
										
										
											2003-01-04 06:03:15 +00:00
										 |  |  | ambiguities when using UTC, or any other fixed-offset tzinfo subclass | 
					
						
							|  |  |  | (such as a class representing only EST (fixed offset -5 hours), or only | 
					
						
							|  |  |  | EDT (fixed offset -4 hours)). | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-23 22:21:52 +00:00
										 |  |  | \subsection{\method{strftime()} Behavior} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | \class{date}, \class{datetime}, and \class{time} | 
					
						
							|  |  |  | objects all support a \code{strftime(\var{format})} | 
					
						
							| 
									
										
										
										
											2002-12-23 22:21:52 +00:00
										 |  |  | method, to create a string representing the time under the control of | 
					
						
							|  |  |  | an explicit format string.  Broadly speaking, | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \code{d.strftime(fmt)} | 
					
						
							| 
									
										
										
										
											2002-12-23 22:21:52 +00:00
										 |  |  | acts like the \refmodule{time} module's | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | \code{time.strftime(fmt, d.timetuple())} | 
					
						
							| 
									
										
										
										
											2002-12-23 22:21:52 +00:00
										 |  |  | although not all objects support a \method{timetuple()} method. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-09 04:10:05 +00:00
										 |  |  | For \class{time} objects, the format codes for | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | year, month, and day should not be used, as time objects have no such | 
					
						
							|  |  |  | values.  If they're used anyway, \code{1900} is substituted for the | 
					
						
							|  |  |  | year, and \code{0} for the month and day. | 
					
						
							| 
									
										
										
										
											2002-12-23 22:21:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  | For \class{date} objects, the format codes for hours, minutes, and | 
					
						
							|  |  |  | seconds should not be used, as \class{date} objects have no such | 
					
						
							|  |  |  | values.  If they're used anyway, \code{0} is substituted for them. | 
					
						
							| 
									
										
										
										
											2002-12-23 22:21:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 21:26:42 +00:00
										 |  |  | For a naive object, the \code{\%z} and \code{\%Z} format codes are | 
					
						
							| 
									
										
										
										
											2002-12-23 22:21:52 +00:00
										 |  |  | replaced by empty strings. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | For an aware object: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{itemize} | 
					
						
							|  |  |  |   \item[\code{\%z}] | 
					
						
							|  |  |  |     \method{utcoffset()} is transformed into a 5-character string of | 
					
						
							|  |  |  |     the form +HHMM or -HHMM, where HH is a 2-digit string giving the | 
					
						
							|  |  |  |     number of UTC offset hours, and MM is a 2-digit string giving the | 
					
						
							|  |  |  |     number of UTC offset minutes.  For example, if | 
					
						
							| 
									
										
										
										
											2002-12-30 03:06:45 +00:00
										 |  |  |     \method{utcoffset()} returns \code{timedelta(hours=-3, minutes=-30)}, | 
					
						
							| 
									
										
										
										
											2002-12-24 16:25:29 +00:00
										 |  |  |     \code{\%z} is replaced with the string \code{'-0330'}. | 
					
						
							| 
									
										
										
										
											2002-12-23 22:21:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   \item[\code{\%Z}] | 
					
						
							|  |  |  |     If \method{tzname()} returns \code{None}, \code{\%Z} is replaced | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  |     by an empty string.  Otherwise \code{\%Z} is replaced by the returned | 
					
						
							| 
									
										
										
										
											2002-12-23 22:21:52 +00:00
										 |  |  |     value, which must be a string. | 
					
						
							|  |  |  | \end{itemize} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The full set of format codes supported varies across platforms, | 
					
						
							|  |  |  | because Python calls the platform C library's \function{strftime()} | 
					
						
							|  |  |  | function, and platform variations are common.  The documentation for | 
					
						
							|  |  |  | Python's \refmodule{time} module lists the format codes that the C | 
					
						
							|  |  |  | standard (1989 version) requires, and those work on all platforms | 
					
						
							|  |  |  | with a standard C implementation.  Note that the 1999 version of the | 
					
						
							|  |  |  | C standard added additional format codes. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The exact range of years for which \method{strftime()} works also | 
					
						
							|  |  |  | varies across platforms.  Regardless of platform, years before 1900 | 
					
						
							|  |  |  | cannot be used. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | \begin{comment} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | \subsection{C API} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Struct typedefs: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PyDateTime_Date | 
					
						
							|  |  |  |     PyDateTime_DateTime | 
					
						
							|  |  |  |     PyDateTime_DateTimeTZ | 
					
						
							|  |  |  |     PyDateTime_Time | 
					
						
							|  |  |  |     PyDateTime_TimeTZ | 
					
						
							|  |  |  |     PyDateTime_Delta | 
					
						
							|  |  |  |     PyDateTime_TZInfo | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Type-check macros: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PyDate_Check(op) | 
					
						
							|  |  |  |     PyDate_CheckExact(op) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PyDateTime_Check(op) | 
					
						
							|  |  |  |     PyDateTime_CheckExact(op) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PyDateTimeTZ_Check(op) | 
					
						
							|  |  |  |     PyDateTimeTZ_CheckExact(op) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PyTime_Check(op) | 
					
						
							|  |  |  |     PyTime_CheckExact(op) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PyTimeTZ_Check(op) | 
					
						
							|  |  |  |     PyTimeTZ_CheckExact(op) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PyDelta_Check(op) | 
					
						
							|  |  |  |     PyDelta_CheckExact(op) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PyTZInfo_Check(op) | 
					
						
							| 
									
										
										
										
											2002-12-31 16:30:49 +00:00
										 |  |  |     PyTZInfo_CheckExact(op) | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Accessor macros: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | All objects are immutable, so accessors are read-only.  All macros | 
					
						
							|  |  |  | return ints: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-24 16:25:29 +00:00
										 |  |  |     For \class{date}, \class{datetime}, and \class{datetimetz} instances: | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  |         PyDateTime_GET_YEAR(o) | 
					
						
							|  |  |  |         PyDateTime_GET_MONTH(o) | 
					
						
							|  |  |  |         PyDateTime_GET_DAY(o) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     For \class{datetime} and \class{datetimetz} instances: | 
					
						
							|  |  |  |         PyDateTime_DATE_GET_HOUR(o) | 
					
						
							|  |  |  |         PyDateTime_DATE_GET_MINUTE(o) | 
					
						
							|  |  |  |         PyDateTime_DATE_GET_SECOND(o) | 
					
						
							|  |  |  |         PyDateTime_DATE_GET_MICROSECOND(o) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-24 16:25:29 +00:00
										 |  |  |     For \class{time} and \class{timetz} instances: | 
					
						
							| 
									
										
										
										
											2002-12-18 14:59:11 +00:00
										 |  |  |         PyDateTime_TIME_GET_HOUR(o) | 
					
						
							|  |  |  |         PyDateTime_TIME_GET_MINUTE(o) | 
					
						
							|  |  |  |         PyDateTime_TIME_GET_SECOND(o) | 
					
						
							|  |  |  |         PyDateTime_TIME_GET_MICROSECOND(o) | 
					
						
							| 
									
										
										
										
											2002-12-30 14:20:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | \end{comment} |