[Python-checkins] python/dist/src/Doc/lib libdatetime.tex,1.23,1.24

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Tue, 31 Dec 2002 10:13:14 -0800


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1:/tmp/cvs-serv684

Modified Files:
	libdatetime.tex 
Log Message:
General style conformance.  Markup some unmarked constructs.


Index: libdatetime.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libdatetime.tex,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** libdatetime.tex	31 Dec 2002 17:24:50 -0000	1.23
--- libdatetime.tex	31 Dec 2002 18:13:11 -0000	1.24
***************
*** 140,158 ****
                              milliseconds=0, minutes=0, hours=0, weeks=0}
  
!     All arguments are optional.  Arguments may be ints, longs, or floats,
!     and may be positive or negative.
  
!     Only \var{days}, \var{seconds} and \var{microseconds} are stored
!     internally.  Arguments are converted to those units:
  
  \begin{verbatim}
!         A millisecond is converted to 1000 microseconds.
[...1696 lines suppressed...]
  \end{methoddesc}
  
  \begin{methoddesc}{isoformat}{sep='T'}
!   Return a string representing the date and time in ISO 8601 format,
!       YYYY-MM-DDTHH:MM:SS.mmmmmm
!   or, if \member{microsecond} is 0,
!       YYYY-MM-DDTHH:MM:SS
  
!   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
  
!   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,
  
  \begin{verbatim}