diff --git a/17-futures/countries/flags3_asyncio.py b/17-futures/countries/flags3_asyncio.py index f3961a1..3340367 100644 --- a/17-futures/countries/flags3_asyncio.py +++ b/17-futures/countries/flags3_asyncio.py @@ -1,11 +1,6 @@ -"""Download flags of countries (with error handling). - -asyncio version using thread pool to save files - -Sample run:: - - $ +"""Download flags and names of countries. +asyncio version """ import asyncio diff --git a/17-futures/countries/flags3_threadpool.py b/17-futures/countries/flags3_threadpool.py index 6bca9b1..e5e4b78 100644 --- a/17-futures/countries/flags3_threadpool.py +++ b/17-futures/countries/flags3_threadpool.py @@ -1,10 +1,6 @@ """Download flags and names of countries. ThreadPool version - -Sample run:: - - """ import collections diff --git a/attic/concurrency/flags/fixture.tar.gz b/attic/concurrency/flags/fixture.tar.gz new file mode 100644 index 0000000..be32b40 Binary files /dev/null and b/attic/concurrency/flags/fixture.tar.gz differ