From d0a1956be98b5e985dcfb77dc22b96198869cde1 Mon Sep 17 00:00:00 2001 From: Josh B Date: Tue, 21 Jan 2020 23:44:28 +1000 Subject: Improve usability of utils.sleep_until Fix issue where sleeping for an extended period on python 3.5 would cause an exception Add sleep_until to API docs Add result argument to sleep_until --- discord/ext/tasks/__init__.py | 6 ------ 1 file changed, 6 deletions(-) (limited to 'discord/ext') diff --git a/discord/ext/tasks/__init__.py b/discord/ext/tasks/__init__.py index 0ea6e2d0..b33a1b0c 100644 --- a/discord/ext/tasks/__init__.py +++ b/discord/ext/tasks/__init__.py @@ -8,8 +8,6 @@ import logging from discord.backoff import ExponentialBackoff -MAX_ASYNCIO_SECONDS = 3456000 - log = logging.getLogger(__name__) class Loop: @@ -360,10 +358,6 @@ class Loop: """ sleep = seconds + (minutes * 60.0) + (hours * 3600.0) - if sleep >= MAX_ASYNCIO_SECONDS: - fmt = 'Total number of seconds exceeds asyncio imposed limit of {0} seconds.' - raise ValueError(fmt.format(MAX_ASYNCIO_SECONDS)) - if sleep < 0: raise ValueError('Total number of seconds cannot be less than zero.') -- cgit v1.2.3