diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2022-03-25 21:32:06 +0800 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2022-03-25 21:38:06 +0800 |
commit | 570242b97260b3af680b9e83fff5245629c97c0f (patch) | |
tree | 11f84b73a9deca48da94dc35b56e71ab3296d68c /databases/py-motor/files/patch-asyncio | |
parent | databases/py-dbf: Fix build with setuptools 58.0.0+ (diff) |
databases/py-motor: Fix build with setuptools 58.0.0+
With hat: python
Diffstat (limited to 'databases/py-motor/files/patch-asyncio')
-rw-r--r-- | databases/py-motor/files/patch-asyncio | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/databases/py-motor/files/patch-asyncio b/databases/py-motor/files/patch-asyncio new file mode 100644 index 000000000000..fa2ae83652ad --- /dev/null +++ b/databases/py-motor/files/patch-asyncio @@ -0,0 +1,16 @@ +The asyncio package has been included in the standard library since Python 3.4. + +--- motor/frameworks/asyncio/__init__.py.orig 2016-10-26 16:39:52 UTC ++++ motor/frameworks/asyncio/__init__.py +@@ -25,10 +25,7 @@ import multiprocessing + import sys + from concurrent.futures import ThreadPoolExecutor + +-try: +- from asyncio import ensure_future +-except ImportError: +- from asyncio import async as ensure_future ++from asyncio import ensure_future + + CLASS_PREFIX = 'AsyncIO' + |