Skip to content

Commit 0f3d1e9

Browse files
Update Doc/library/threading.rst
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
1 parent ba7f6f6 commit 0f3d1e9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Doc/library/threading.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ creating and starting threads using :class:`~threading.Thread`::
7676

7777
def crawl(link, delay=3):
7878
print(f"crawl started for {link}")
79-
time.sleep(delay)
79+
time.sleep(delay) # Blocking I/O, simulating a network request
8080
print(f"crawl ended for {link}")
8181

8282
links = [

0 commit comments

Comments
 (0)