diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-01-01 18:12:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-01 18:12:59 (GMT) |
commit | 2bd73546959619b2519a7a830b3aaf190abeaf78 (patch) | |
tree | 268616f6fa219318309aebe7c408669ce50c2ba7 | |
parent | 1b37268ef10bd20c30d349b8401c88215c8a6be8 (diff) | |
download | cpython-2bd73546959619b2519a7a830b3aaf190abeaf78.zip cpython-2bd73546959619b2519a7a830b3aaf190abeaf78.tar.gz cpython-2bd73546959619b2519a7a830b3aaf190abeaf78.tar.bz2 |
bpo-46079: Replace external link that is down for maintenance. (GH-30315) (GH-30328)
-rw-r--r-- | Doc/tutorial/stdlib.rst | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/tutorial/stdlib.rst b/Doc/tutorial/stdlib.rst index f33265c..ac16160 100644 --- a/Doc/tutorial/stdlib.rst +++ b/Doc/tutorial/stdlib.rst @@ -178,13 +178,13 @@ protocols. Two of the simplest are :mod:`urllib.request` for retrieving data from URLs and :mod:`smtplib` for sending mail:: >>> from urllib.request import urlopen - >>> with urlopen('http://tycho.usno.navy.mil/cgi-bin/timer.pl') as response: + >>> with urlopen('http://worldtimeapi.org/api/timezone/etc/UTC.txt') as response: ... for line in response: - ... line = line.decode('utf-8') # Decoding the binary data to text. - ... if 'EST' in line or 'EDT' in line: # look for Eastern Time - ... print(line) - - <BR>Nov. 25, 09:43:32 PM EST + ... line = line.decode() # Convert bytes to a str + ... if line.startswith('datetime'): + ... print(line.rstrip()) # Remove trailing newline + ... + datetime: 2022-01-01T01:36:47.689215+00:00 >>> import smtplib >>> server = smtplib.SMTP('localhost') |