You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/tqdm/files/tqdm-4.61.1-py310.patch

36 lines
1.0 KiB

From d2a6ec2ab84aec847b1598bb2a777103cea7fc9f Mon Sep 17 00:00:00 2001
From: Casper da Costa-Luis <tqdm@cdcl.ml>
Date: Sat, 12 Jun 2021 17:39:37 +0100
Subject: [PATCH] fix py3.10 `asyncio` tests
- fixes #1176
---
tqdm/asyncio.py | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/tqdm/asyncio.py b/tqdm/asyncio.py
index 0d3ba747d..8f9b4ed6e 100644
--- a/tqdm/asyncio.py
+++ b/tqdm/asyncio.py
@@ -8,6 +8,7 @@
... ...
"""
import asyncio
+from sys import version_info
from .std import tqdm as std_tqdm
@@ -60,7 +61,11 @@ def as_completed(cls, fs, *, loop=None, timeout=None, total=None, **tqdm_kwargs)
"""
if total is None:
total = len(fs)
- yield from cls(asyncio.as_completed(fs, loop=loop, timeout=timeout),
+
+ kwargs = {}
+ if version_info[:2] < (3, 10):
+ kwargs['loop'] = loop
+ yield from cls(asyncio.as_completed(fs, timeout=timeout, **kwargs),
total=total, **tqdm_kwargs)
@classmethod