Skip to content

Commit e63e7ae

Browse files
committed
Changed jython URL to use https to avoid redirect
1 parent 21f6077 commit e63e7ae

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

concurrency-overview/io_asyncio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ async def download_all_sites(sites):
2020

2121
if __name__ == "__main__":
2222
sites = [
23-
"http://www.jython.org",
23+
"https://www.jython.org",
2424
"http://olympus.realpython.org/dice",
2525
] * 80
2626
start_time = time.time()

concurrency-overview/io_mp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def download_all_sites(sites):
2525

2626
if __name__ == "__main__":
2727
sites = [
28-
"http://www.jython.org",
28+
"https://www.jython.org",
2929
"http://olympus.realpython.org/dice",
3030
] * 80
3131
start_time = time.time()

concurrency-overview/io_non_concurrent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def download_all_sites(sites):
1616

1717
if __name__ == "__main__":
1818
sites = [
19-
"http://www.jython.org",
19+
"https://www.jython.org",
2020
"http://olympus.realpython.org/dice",
2121
] * 80
2222
start_time = time.time()

concurrency-overview/io_threading.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def download_all_sites(sites):
2727

2828
if __name__ == "__main__":
2929
sites = [
30-
"http://www.jython.org",
30+
"https://www.jython.org",
3131
"http://olympus.realpython.org/dice",
3232
] * 80
3333
start_time = time.time()

0 commit comments

Comments
 (0)