Use full package paths in imports.
[python/dscho.git] / Doc / lib / libtime.tex
blob988e9a47d364c21c015ba5b56ff7f1f9b5be1f4e
1 \section{\module{time} ---
2 Time access and conversions}
4 \declaremodule{builtin}{time}
5 \modulesynopsis{Time access and conversions.}
8 This module provides various time-related functions.
9 It is always available, but not all functions are available
10 on all platforms.
12 An explanation of some terminology and conventions is in order.
14 \begin{itemize}
16 \item
17 The \dfn{epoch}\index{epoch} is the point where the time starts. On
18 January 1st of that year, at 0 hours, the ``time since the epoch'' is
19 zero. For \UNIX, the epoch is 1970. To find out what the epoch is,
20 look at \code{gmtime(0)}.
22 \item
23 The functions in this module do not handle dates and times before the
24 epoch or far in the future. The cut-off point in the future is
25 determined by the C library; for \UNIX, it is typically in
26 2038\index{Year 2038}.
28 \item
29 \strong{Year 2000 (Y2K) issues}:\index{Year 2000}\index{Y2K} Python
30 depends on the platform's C library, which generally doesn't have year
31 2000 issues, since all dates and times are represented internally as
32 seconds since the epoch. Functions accepting a time tuple (see below)
33 generally require a 4-digit year. For backward compatibility, 2-digit
34 years are supported if the module variable \code{accept2dyear} is a
35 non-zero integer; this variable is initialized to \code{1} unless the
36 environment variable \envvar{PYTHONY2K} is set to a non-empty string,
37 in which case it is initialized to \code{0}. Thus, you can set
38 \envvar{PYTHONY2K} to a non-empty string in the environment to require 4-digit
39 years for all year input. When 2-digit years are accepted, they are
40 converted according to the \POSIX{} or X/Open standard: values 69-99
41 are mapped to 1969-1999, and values 0--68 are mapped to 2000--2068.
42 Values 100--1899 are always illegal. Note that this is new as of
43 Python 1.5.2(a2); earlier versions, up to Python 1.5.1 and 1.5.2a1,
44 would add 1900 to year values below 1900.
46 \item
47 UTC\index{UTC} is Coordinated Universal Time\index{Coordinated
48 Universal Time} (formerly known as Greenwich Mean
49 Time,\index{Greenwich Mean Time} or GMT). The acronym UTC is not a
50 mistake but a compromise between English and French.
52 \item
53 DST is Daylight Saving Time,\index{Daylight Saving Time} an adjustment
54 of the timezone by (usually) one hour during part of the year. DST
55 rules are magic (determined by local law) and can change from year to
56 year. The C library has a table containing the local rules (often it
57 is read from a system file for flexibility) and is the only source of
58 True Wisdom in this respect.
60 \item
61 The precision of the various real-time functions may be less than
62 suggested by the units in which their value or argument is expressed.
63 E.g.\ on most \UNIX{} systems, the clock ``ticks'' only 50 or 100 times a
64 second, and on the Mac, times are only accurate to whole seconds.
66 \item
67 On the other hand, the precision of \function{time()} and
68 \function{sleep()} is better than their \UNIX{} equivalents: times are
69 expressed as floating point numbers, \function{time()} returns the
70 most accurate time available (using \UNIX{} \cfunction{gettimeofday()}
71 where available), and \function{sleep()} will accept a time with a
72 nonzero fraction (\UNIX{} \cfunction{select()} is used to implement
73 this, where available).
75 \item
76 The time tuple as returned by \function{gmtime()},
77 \function{localtime()}, and \function{strptime()}, and accepted by
78 \function{asctime()}, \function{mktime()} and \function{strftime()},
79 is a tuple of 9 integers:
81 \begin{tableiii}{r|l|l}{textrm}{Index}{Field}{Values}
82 \lineiii{0}{year}{(for example, 1993)}
83 \lineiii{1}{month}{range [1,12]}
84 \lineiii{2}{day}{range [1,31]}
85 \lineiii{3}{hour}{range [0,23]}
86 \lineiii{4}{minute}{range [0,59]}
87 \lineiii{5}{second}{range [0,61]; see \strong{(1)} in \function{strftime()} description}
88 \lineiii{6}{weekday}{range [0,6], Monday is 0}
89 \lineiii{7}{Julian day}{range [1,366]}
90 \lineiii{8}{daylight savings flag}{0, 1 or -1; see below}
91 \end{tableiii}
93 Note that unlike the C structure, the month value is a
94 range of 1-12, not 0-11. A year value will be handled as described
95 under ``Year 2000 (Y2K) issues'' above. A \code{-1} argument as
96 daylight savings flag, passed to \function{mktime()} will usually
97 result in the correct daylight savings state to be filled in.
99 When a tuple with an incorrect length is passed to a function
100 expecting a time tuple, or having elements of the wrong type, a
101 \exception{TypeError} is raised.
103 \end{itemize}
105 The module defines the following functions and data items:
108 \begin{datadesc}{accept2dyear}
109 Boolean value indicating whether two-digit year values will be
110 accepted. This is true by default, but will be set to false if the
111 environment variable \envvar{PYTHONY2K} has been set to a non-empty
112 string. It may also be modified at run time.
113 \end{datadesc}
115 \begin{datadesc}{altzone}
116 The offset of the local DST timezone, in seconds west of UTC, if one
117 is defined. This is negative if the local DST timezone is east of UTC
118 (as in Western Europe, including the UK). Only use this if
119 \code{daylight} is nonzero.
120 \end{datadesc}
122 \begin{funcdesc}{asctime}{\optional{tuple}}
123 Convert a tuple representing a time as returned by \function{gmtime()}
124 or \function{localtime()} to a 24-character string of the following form:
125 \code{'Sun Jun 20 23:21:05 1993'}. If \var{tuple} is not provided, the
126 current time as returned by \function{localtime()} is used.
127 \note{Unlike the C function of the same name, there is no trailing
128 newline.}
129 \versionchanged[Allowed \var{tuple} to be omitted]{2.1}
130 \end{funcdesc}
132 \begin{funcdesc}{clock}{}
133 On \UNIX, return
134 the current processor time as a floating point number expressed in
135 seconds. The precision, and in fact the very definition of the meaning
136 of ``processor time''\index{CPU time}\index{processor time}, depends
137 on that of the C function of the same name, but in any case, this is
138 the function to use for benchmarking\index{benchmarking} Python or
139 timing algorithms.
141 On Windows, this function returns wall-clock seconds elapsed since the
142 first call to this function, as a floating point number,
143 based on the Win32 function \cfunction{QueryPerformanceCounter()}.
144 The resolution is typically better than one microsecond.
145 \end{funcdesc}
147 \begin{funcdesc}{ctime}{\optional{secs}}
148 Convert a time expressed in seconds since the epoch to a string
149 representing local time. If \var{secs} is not provided, the current time
150 as returned by \function{time()} is used. \code{ctime(\var{secs})}
151 is equivalent to \code{asctime(localtime(\var{secs}))}.
152 \versionchanged[Allowed \var{secs} to be omitted]{2.1}
153 \end{funcdesc}
155 \begin{datadesc}{daylight}
156 Nonzero if a DST timezone is defined.
157 \end{datadesc}
159 \begin{funcdesc}{gmtime}{\optional{secs}}
160 Convert a time expressed in seconds since the epoch to a time tuple
161 in UTC in which the dst flag is always zero. If \var{secs} is not
162 provided, the current time as returned by \function{time()} is used.
163 Fractions of a second are ignored. See above for a description of the
164 tuple lay-out.
165 \versionchanged[Allowed \var{secs} to be omitted]{2.1}
166 \end{funcdesc}
168 \begin{funcdesc}{localtime}{\optional{secs}}
169 Like \function{gmtime()} but converts to local time. The dst flag is
170 set to \code{1} when DST applies to the given time.
171 \versionchanged[Allowed \var{secs} to be omitted]{2.1}
172 \end{funcdesc}
174 \begin{funcdesc}{mktime}{tuple}
175 This is the inverse function of \function{localtime()}. Its argument
176 is the full 9-tuple (since the dst flag is needed; use \code{-1} as
177 the dst flag if it is unknown) which expresses the time in
178 \emph{local} time, not UTC. It returns a floating point number, for
179 compatibility with \function{time()}. If the input value cannot be
180 represented as a valid time, either \exception{OverflowError} or
181 \exception{ValueError} will be raised (which depends on whether the
182 invalid value is caught by Python or the underlying C libraries). The
183 earliest date for which it can generate a time is platform-dependent.
184 \end{funcdesc}
186 \begin{funcdesc}{sleep}{secs}
187 Suspend execution for the given number of seconds. The argument may
188 be a floating point number to indicate a more precise sleep time.
189 The actual suspension time may be less than that requested because any
190 caught signal will terminate the \function{sleep()} following
191 execution of that signal's catching routine. Also, the suspension
192 time may be longer than requested by an arbitrary amount because of
193 the scheduling of other activity in the system.
194 \end{funcdesc}
196 \begin{funcdesc}{strftime}{format\optional{, tuple}}
197 Convert a tuple representing a time as returned by \function{gmtime()}
198 or \function{localtime()} to a string as specified by the \var{format}
199 argument. If \var{tuple} is not provided, the current time as returned by
200 \function{localtime()} is used. \var{format} must be a string.
201 \versionchanged[Allowed \var{tuple} to be omitted]{2.1}
203 The following directives can be embedded in the \var{format} string.
204 They are shown without the optional field width and precision
205 specification, and are replaced by the indicated characters in the
206 \function{strftime()} result:
208 \begin{tableiii}{c|p{24em}|c}{code}{Directive}{Meaning}{Notes}
209 \lineiii{\%a}{Locale's abbreviated weekday name.}{}
210 \lineiii{\%A}{Locale's full weekday name.}{}
211 \lineiii{\%b}{Locale's abbreviated month name.}{}
212 \lineiii{\%B}{Locale's full month name.}{}
213 \lineiii{\%c}{Locale's appropriate date and time representation.}{}
214 \lineiii{\%d}{Day of the month as a decimal number [01,31].}{}
215 \lineiii{\%H}{Hour (24-hour clock) as a decimal number [00,23].}{}
216 \lineiii{\%I}{Hour (12-hour clock) as a decimal number [01,12].}{}
217 \lineiii{\%j}{Day of the year as a decimal number [001,366].}{}
218 \lineiii{\%m}{Month as a decimal number [01,12].}{}
219 \lineiii{\%M}{Minute as a decimal number [00,59].}{}
220 \lineiii{\%p}{Locale's equivalent of either AM or PM.}{}
221 \lineiii{\%S}{Second as a decimal number [00,61].}{(1)}
222 \lineiii{\%U}{Week number of the year (Sunday as the first day of the
223 week) as a decimal number [00,53]. All days in a new year
224 preceding the first Sunday are considered to be in week 0.}{}
225 \lineiii{\%w}{Weekday as a decimal number [0(Sunday),6].}{}
226 \lineiii{\%W}{Week number of the year (Monday as the first day of the
227 week) as a decimal number [00,53]. All days in a new year
228 preceding the first Sunday are considered to be in week 0.}{}
229 \lineiii{\%x}{Locale's appropriate date representation.}{}
230 \lineiii{\%X}{Locale's appropriate time representation.}{}
231 \lineiii{\%y}{Year without century as a decimal number [00,99].}{}
232 \lineiii{\%Y}{Year with century as a decimal number.}{}
233 \lineiii{\%Z}{Time zone name (or by no characters if no time zone exists).}{}
234 \lineiii{\%\%}{A literal \character{\%} character.}{}
235 \end{tableiii}
237 \noindent
238 Notes:
240 \begin{description}
241 \item[(1)]
242 The range really is \code{0} to \code{61}; this accounts for leap
243 seconds and the (very rare) double leap seconds.
244 \end{description}
246 Here is an example, a format for dates compatible with that specified
247 in the \rfc{2822} Internet email standard.
248 \footnote{The use of \code{\%Z} is now
249 deprecated, but the \code{\%z} escape that expands to the preferred
250 hour/minute offset is not supported by all ANSI C libraries. Also,
251 a strict reading of the original 1982 \rfc{822} standard calls for
252 a two-digit year (\%y rather than \%Y), but practice moved to
253 4-digit years long before the year 2000. The 4-digit year has
254 been mandated by \rfc{2822}, which obsoletes \rfc{822}.}
256 \begin{verbatim}
257 >>> from time import gmtime, strftime
258 >>> strftime("%a, %d %b %Y %H:%M:%S +0000", gmtime())
259 'Thu, 28 Jun 2001 14:17:15 +0000'
260 \end{verbatim}
262 Additional directives may be supported on certain platforms, but
263 only the ones listed here have a meaning standardized by ANSI C.
265 On some platforms, an optional field width and precision
266 specification can immediately follow the initial \character{\%} of a
267 directive in the following order; this is also not portable.
268 The field width is normally 2 except for \code{\%j} where it is 3.
269 \end{funcdesc}
271 \begin{funcdesc}{strptime}{string\optional{, format}}
272 Parse a string representing a time according to a format. The return
273 value is a tuple as returned by \function{gmtime()} or
274 \function{localtime()}. The \var{format} parameter uses the same
275 directives as those used by \function{strftime()}; it defaults to
276 \code{"\%a \%b \%d \%H:\%M:\%S \%Y"} which matches the formatting
277 returned by \function{ctime()}. The same platform caveats apply; see
278 the local \UNIX{} documentation for restrictions or additional
279 supported directives. If \var{string} cannot be parsed according to
280 \var{format}, \exception{ValueError} is raised. Values which are not
281 provided as part of the input string are filled in with default
282 values; the specific values are platform-dependent as the XPG standard
283 does not provide sufficient information to constrain the result.
284 \end{funcdesc}
286 \begin{funcdesc}{time}{}
287 Return the time as a floating point number expressed in seconds since
288 the epoch, in UTC. Note that even though the time is always returned
289 as a floating point number, not all systems provide time with a better
290 precision than 1 second. While this function normally returns
291 non-decreasing values, it can return a lower value than a previous
292 call if the system clock has been set back between the two calls.
293 \end{funcdesc}
295 \begin{datadesc}{timezone}
296 The offset of the local (non-DST) timezone, in seconds west of UTC
297 (negative in most of Western Europe, positive in the US, zero in the
298 UK).
299 \end{datadesc}
301 \begin{datadesc}{tzname}
302 A tuple of two strings: the first is the name of the local non-DST
303 timezone, the second is the name of the local DST timezone. If no DST
304 timezone is defined, the second string should not be used.
305 \end{datadesc}
308 \begin{seealso}
309 \seemodule{locale}{Internationalization services. The locale
310 settings can affect the return values for some of
311 the functions in the \module{time} module.}
312 \end{seealso}