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

Fred L. Drake fdrake@users.sourceforge.net
Sat, 03 Feb 2001 06:35:41 -0800


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

Modified Files:
	libtime.tex 
Log Message:

Fix markup typo in a {verbatim} environment (there should not be any!);
caught by Eric Raymond.


Index: libtime.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libtime.tex,v
retrieving revision 1.36
retrieving revision 1.37
diff -C2 -r1.36 -r1.37
*** libtime.tex	2001/01/28 00:56:54	1.36
--- libtime.tex	2001/02/03 14:35:38	1.37
***************
*** 236,240 ****
  \begin{verbatim}
  >>> from time import *
! >>> strftime("\%a, \%d \%b \%Y \%H:\%M:\%S \%Z", localtime())
  'Sat, 27 Jan 2001 05:15:05 EST'
  >>>
--- 236,240 ----
  \begin{verbatim}
  >>> from time import *
! >>> strftime("%a, %d %b %Y %H:%M:%S %Z", localtime())
  'Sat, 27 Jan 2001 05:15:05 EST'
  >>>