[Python-checkins] CVS: python/dist/src/Doc/lib libtime.tex,1.37.4.1,1.37.4.2

Fred L. Drake fdrake@users.sourceforge.net
2001年6月29日 08:41:21 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv8372/lib
Modified Files:
 Tag: release21-maint
	libtime.tex 
Log Message:
SourceForge bug #437041:
Use a portable format in the example that creates a timestamp suitable for
use in email, also updating it and the footnote from RFC 822 to RFC 2822.
Index: libtime.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libtime.tex,v
retrieving revision 1.37.4.1
retrieving revision 1.37.4.2
diff -C2 -r1.37.4.1 -r1.37.4.2
*** libtime.tex	2001年04月19日 04:55:57	1.37.4.1
--- libtime.tex	2001年06月29日 15:41:19	1.37.4.2
***************
*** 231,247 ****
 
 Here is an example, a format for dates compatible with that specified 
! in the \rfc{822} Internet email standard.
! 	\footnote{The use of \%Z is now
! 	deprecated, but the \%z escape that expands to the preferred 
 	hour/minute offset is not supported by all ANSI C libraries. Also,
 	a strict reading of the original 1982 \rfc{822} standard calls for
 	a two-digit year (\%y rather than \%Y), but practice moved to
! 	4-digit years long before the year 2000.}
 
 \begin{verbatim}
! >>> from time import *
! >>> strftime("%a, %d %b %Y %H:%M:%S %Z", localtime())
! 'Sat, 27 Jan 2001 05:15:05 EST'
! >>>
 \end{verbatim}
 
--- 231,247 ----
 
 Here is an example, a format for dates compatible with that specified 
! in the \rfc{2822} Internet email standard.
! 	\footnote{The use of \code{\%Z} is now
! 	deprecated, but the \code{\%z} escape that expands to the preferred 
 	hour/minute offset is not supported by all ANSI C libraries. Also,
 	a strict reading of the original 1982 \rfc{822} standard calls for
 	a two-digit year (\%y rather than \%Y), but practice moved to
! 	4-digit years long before the year 2000. The 4-digit year has
! been mandated by \rfc{2822}, which obsoletes \rfc{822}.}
 
 \begin{verbatim}
! >>> from time import gmtime, strftime
! >>> strftime("%a, %d %b %Y %H:%M:%S +0000", gmtime())
! 'Thu, 28 Jun 2001 14:17:15 +0000'
 \end{verbatim}
 

AltStyle によって変換されたページ (->オリジナル) /