aboutsummaryrefslogtreecommitdiff
path: root/discord/ext/tasks
Commit message (Expand)AuthorAgeFilesLines
* [tasks] Lazily fetch event loop if one isn't providedRapptz2020-09-101-1/+4
* [tasks] Don't update _next_iteration on retryJosh2020-08-281-2/+7
* [tasks] Remove HTTPException as an exception to silently continue for Dan Hess2020-08-051-1/+0
* Rewrite gateway to use aiohttp instead of websocketsRapptz2020-07-251-3/+0
* Add a licence and encoding declaration to missing filesJames2020-07-081-0/+26
* [tasks] Fix issue with default error handler in class contextJosh2020-06-281-1/+2
* [tasks] Allow Loop.cancel in Loop.before_loopSteve C2020-05-101-0/+1
* [tasks] Fix tasks decorators being discardedSteve C2020-05-071-0/+3
* [tasks] Replace stack-based implementation with a cleaner one.Rapptz2020-04-141-37/+6
* [tasks] Create different Loop objects for different instancesRapptz2020-04-141-2/+44
* Allow for optional custom error handler in tasks extensionJosh B2020-04-041-6/+38
* Remove extra to in tasks docsEpic2020-04-041-1/+1
* [tasks] Add is_running property to LoopJames2020-04-041-0/+7
* Improve usability of utils.sleep_untilJosh B2020-01-211-6/+0
* Drop superfluous zero in version related changes in the documentationRapptz2020-01-211-4/+4
* [tasks] Use new sleep_until util instead of internal functionRapptz2020-01-211-6/+2
* [tasks] Fix issue with next_iteration when task overruns time allottedJosh B2020-01-211-3/+7
* [tasks] Add Loop.next_iteration propertyJosh B2020-01-201-1/+26
* Revert "[tasks] Add Loop.exception for more reliable exception retrieval."Rapptz2019-11-191-14/+1
* Revert "[tasks] Add support for explicit time parameter when running."Rapptz2019-11-191-92/+14
* [tasks] Add support for passing an argument list of exceptions.mathsman51332019-09-101-17/+18
* [tasks] Add support for explicit time parameter when running.Rapptz2019-08-111-14/+92
* [tasks] Add Loop.exception for more reliable exception retrieval.Rapptz2019-07-271-1/+14
* [tasks] Removed Returns from decorator docstringNihaal2019-06-291-6/+1
* Improve documentationNCPlayz2019-06-071-1/+1
* [tasks] Add version added note to Loop.change_intervalSuhail2019-05-191-0/+2
* [tasks] Add way to change interval at run-timeSuhail6inkling2019-05-171-10/+37
* [tasks] Add indicator for internal task failureRapptz2019-05-131-2/+12
* [tasks] Log exception when something failed to logging.Rapptz2019-05-131-0/+6
* [tasks] Return coro from before and after decoratorsSnowyLuma2019-05-131-1/+2
* [tasks] Keep retrying before gracefully exiting.Rapptz2019-05-121-2/+10
* [tasks] Add Loop.stop to gracefully stop a task.Rapptz2019-05-121-0/+17
* [tasks] Reset iteration count when loop terminates.Rapptz2019-05-121-0/+1
* Fix typo in Loop.restart documentationSteve C2019-05-101-1/+1
* [tasks] Add Loop.restartRapptz2019-05-101-1/+28
* [tasks] Add way to query cancellation state for Loop.after_loopRapptz2019-04-301-8/+20
* [tasks] Remove support for awaitables due to gotchas.Rapptz2019-04-291-17/+17
* [tasks] Fix assignment of tuple when appendingDanny2019-04-151-1/+1
* [tasks] set internal task to None after cancelingSteve C2019-04-121-0/+1
* [tasks] Add before_loop and after_loop decoratorsRapptz2019-04-121-16/+79
* [tasks] Ensure total number of seconds is not less than 0.Rapptz2019-04-111-3/+6
* [tasks] Rename Loop.run to Loop.start to avoid blocking connotationsRapptz2019-04-111-3/+3
* [tasks] Add a new background helper 'tasks' extension.Rapptz2019-04-111-0/+209