diff options
author | Fred Drake <fdrake@acm.org> | 2006-04-26 05:19:39 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2006-04-26 05:19:39 (GMT) |
commit | a5f1fd09eb159891313ea5a777b44fc664abdcf1 (patch) | |
tree | ebfe82202fd648e160266ae794d1f042a6b0413f /Doc/tut | |
parent | 2afbf96f534fec1ada925f96b71ee039a2b3712a (diff) | |
download | cpython-a5f1fd09eb159891313ea5a777b44fc664abdcf1.zip cpython-a5f1fd09eb159891313ea5a777b44fc664abdcf1.tar.gz cpython-a5f1fd09eb159891313ea5a777b44fc664abdcf1.tar.bz2 |
minor adjustment suggested by Peter Gephardt
Diffstat (limited to 'Doc/tut')
-rw-r--r-- | Doc/tut/tut.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index e01f254..9d45abe 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -4771,7 +4771,7 @@ for sending mail: \begin{verbatim} >>> import urllib2 >>> for line in urllib2.urlopen('http://tycho.usno.navy.mil/cgi-bin/timer.pl'): -... if 'EST' in line: # look for Eastern Standard Time +... if 'EST' in line or 'EDT' in line: # look for Eastern Time ... print line <BR>Nov. 25, 09:43:32 PM EST |