From 4df643a5f947cb2c08fa6083c02cca577524285d Mon Sep 17 00:00:00 2001
From: HassanAbouelela An async transport method for statsd communication. Bases: An async implementation of Create a new Use Useful utilities and tools for Discord bot development. Bases: A sub-class that implements many common features that Python Discord bots use. Initialise the base bot instance.
StatsClientBase
statsd.client.base.StatsClientBase
that supports async stat communication.
AsyncStatsClient
.
asyncio.loop.create_datagram_endpoint
from the loop given on init to create a socket.
Bot
Add the given cog
to the bot and log the operation.
Add command
as normal and then add its root aliases to the bot.
Not implemented! Re-instantiate the bot instead of attempting to re-use a closed one.
Close the Discord connection, and the aiohttp session, connector, statsd client, and resolver.
Load all the extensions within the given module and save them to self.all_extensions
.
This should be ran in a task on the event loop to avoid deadlocks caused by wait_for
calls.
Log the given message to #dev-log.
Set the internal guild available event when self.guild_id becomes available.
If the cache appears to still be empty (no members, no channels, or no roles), the event will not be set and guild_available_but_cache_empty event will be emitted.
@@ -413,7 +413,7 @@ will not be set and guild_available_but_cache_empty event will be eClear the internal guild available event when self.guild_id becomes unavailable.
Ping all required services on setup to ensure they are up before starting.
Remove a command/alias as normal and then remove its root aliases from the bot.
Individual root aliases cannot be removed by this function. To remove them, either remove the entire command or manually edit bot.all_commands.
@@ -448,7 +448,7 @@ To remove them, either remove the entire command or manually edit bot.all_An async init to startup generic services.
Connects to statsd, and calls
AsyncStatsClient.create_socket
@@ -462,7 +462,7 @@ and
Wait until the guild that matches the guild_id
given at init is available (and the cache is ready).
The on_ready event is inadequate because it only waits 2 seconds for a GUILD_CREATE gateway event before giving up and thus not populating the cache for unavailable guilds.
@@ -477,12 +477,12 @@ gateway event before giving up and thus not populating the cache for unavailableBases: Exception
Exception class for startup errors.
An API wrapper around the Site API.
Bases: object
A wrapper for the Django Site API.
Initialize a new APIClient
instance.
Close the aiohttp session.
Send a DELETE request to the site API and return the JSON response.
Equivalent to APIClient.request()
with GET passed as the method.
Raise ResponseCodeError
for non-OK response if an exception should be raised.
Equivalent to APIClient.request()
with PATCH passed as the method.
Equivalent to APIClient.request()
with POST passed as the method.
Equivalent to APIClient.request()
with PUT passed as the method.
Send an HTTP request to the site API and return the JSON response.
Bases: ValueError
Raised in APIClient.request()
when a non-OK HTTP response is received.
Initialize a new ResponseCodeError
instance.
Return a string representation of the error.
Utilities related to custom caches.
Bases: object
LRU cache implementation for coroutines.
Once the cache exceeds the maximum size, keys are deleted in FIFO order.
An offset may be optionally provided to be applied to the coroutine’s arguments when creating the cache key.
Decorator for async cache.
Initialise a new AsyncCache
instance.
Clear cache instance.
Useful helper functions for interacting with various discord channel objects.
Attempt to get or fetch the given channel_id
from the bots cache, and return it.
Return whether the given channel
in the the category with the id category_id
.
Cleans a text argument or replied message’s content.
Useful utilities and tools for Discord bot development.
Applies all common monkey patches for our bots.
discord.ext.commands.Command
and discord.ext.commands.Group
to support root aliases.A root_aliases
keyword argument is added to these two objects, which is a sequence of alias names
@@ -328,7 +328,7 @@ that will act as top-level groups rather than being aliases of the command’s g
Return an unqualified name given a qualified module/package name
.
Bases: Button
A button that can be added to a view to delete the message containing the view on click.
This button itself carries out no interaction checks, these should be done by the parent view.
@@ -323,12 +323,12 @@Delete the original message on button click.
Bases: View
A view that allows the original invoker and moderators to interact with it.
None
-
-__init__(*, allowed_users, allowed_roles, timeout=180.0, message=None)[source]#
+__init__(*, allowed_users, allowed_roles, timeout=180.0, message=None)[source]#
-
-async interaction_check(interaction)[source]#
+async interaction_check(interaction)[source]#
Ensure the user clicking the button is the view invoker, or a moderator.
- Parameters:
@@ -377,7 +377,7 @@ If None
-
-async on_timeout()[source]#
+async on_timeout()[source]#
Remove the view from self.message
if set.
- Return type:
diff --git a/main/output/botcore.utils.logging.html b/main/output/botcore.utils.logging.html
index 528f8437..e4e945ca 100644
--- a/main/output/botcore.utils.logging.html
+++ b/main/output/botcore.utils.logging.html
@@ -309,12 +309,12 @@
Common logging related functions.
-
-class CustomLogger(name, level=0)[source]#
+class CustomLogger(name, level=0)[source]#
Bases: Logger
Custom implementation of the logging.Logger
class with an added trace
method.
-
-trace(msg, *args, **kwargs)[source]#
+trace(msg, *args, **kwargs)[source]#
Log the given message with the severity "TRACE"
.
To pass exception information, use the keyword argument exc_info with a true value:
logger.trace("Houston, we have an %s", "interesting problem", exc_info=1)
@@ -338,7 +338,7 @@
-
-get_logger(name=None)[source]#
+get_logger(name=None)[source]#
Utility to make mypy recognise that logger is of type CustomLogger
.
- Parameters:
diff --git a/main/output/botcore.utils.members.html b/main/output/botcore.utils.members.html
index 003e1803..5483f947 100644
--- a/main/output/botcore.utils.members.html
+++ b/main/output/botcore.utils.members.html
@@ -309,7 +309,7 @@
Useful helper functions for interactin with discord.Member
objects.
-
-async get_or_fetch_member(guild, member_id)[source]#
+async get_or_fetch_member(guild, member_id)[source]#
Attempt to get a member from cache; on failure fetch from the API.
- Return type:
@@ -323,7 +323,7 @@
-
-async handle_role_change(member, coro, role)[source]#
+async handle_role_change(member, coro, role)[source]#
Await the given coro
with role
as the sole argument.
Handle errors that we expect to be raised from
discord.Member.add_roles
and discord.Member.remove_roles
.
diff --git a/main/output/botcore.utils.regex.html b/main/output/botcore.utils.regex.html
index 83a48246..7b95b26c 100644
--- a/main/output/botcore.utils.regex.html
+++ b/main/output/botcore.utils.regex.html
@@ -309,7 +309,7 @@
Common regular expressions.
-
-DISCORD_INVITE[source]#
+DISCORD_INVITE[source]#
Regex for Discord server invites.
Warning
@@ -323,7 +323,7 @@ such as
-
-FORMATTED_CODE_REGEX[source]#
+FORMATTED_CODE_REGEX[source]#
Regex for formatted code, using Discord’s code blocks.
@@ -331,7 +331,7 @@ such as
-
-RAW_CODE_REGEX[source]#
+RAW_CODE_REGEX[source]#
Regex for raw code, not using Discord’s code blocks.
diff --git a/main/output/botcore.utils.scheduling.html b/main/output/botcore.utils.scheduling.html
index 29588053..358a03da 100644
--- a/main/output/botcore.utils.scheduling.html
+++ b/main/output/botcore.utils.scheduling.html
@@ -309,7 +309,7 @@
Generic python scheduler.
-
-class Scheduler(name)[source]#
+class Scheduler(name)[source]#
Bases: object
Schedule the execution of coroutines and keep track of them.
When instantiating a Scheduler
, a name must be provided. This name is used to distinguish the
@@ -323,7 +323,7 @@ the same ID used to schedule it.
Any exception raised in a scheduled task is logged when the task is done.
-
-__contains__(task_id)[source]#
+__contains__(task_id)[source]#
Return True
if a task with the given task_id
is currently scheduled.
- Parameters:
@@ -340,7 +340,7 @@ the same ID used to schedule it.
-
-__init__(name)[source]#
+__init__(name)[source]#
Initialize a new Scheduler
instance.
- Parameters:
@@ -351,7 +351,7 @@ the same ID used to schedule it.
-
-cancel(task_id)[source]#
+cancel(task_id)[source]#
Unschedule the task identified by task_id
. Log a warning if the task doesn’t exist.
- Parameters:
@@ -365,7 +365,7 @@ the same ID used to schedule it.
-
-cancel_all()[source]#
+cancel_all()[source]#
Unschedule all known tasks.
- Return type:
@@ -376,7 +376,7 @@ the same ID used to schedule it.
-
-schedule(task_id, coroutine)[source]#
+schedule(task_id, coroutine)[source]#
Schedule the execution of a coroutine
.
If a task with task_id
already exists, close coroutine
instead of scheduling it. This
prevents unawaited coroutine warnings. Don’t pass a coroutine that’ll be re-used elsewhere.
@@ -395,7 +395,7 @@ prevents unawaited coroutine warnings. Don’t pass a coroutine that’ll be re-
-
-schedule_at(time, task_id, coroutine)[source]#
+schedule_at(time, task_id, coroutine)[source]#
Schedule coroutine
to be executed at the given time
.
If time
is timezone aware, then use that timezone to calculate now() when subtracting.
If time
is naĂŻve, then use UTC.
@@ -418,7 +418,7 @@ prevents unawaited coroutine warnings. Don’t pass a coroutine that’ll be re-
-
-schedule_later(delay, task_id, coroutine)[source]#
+schedule_later(delay, task_id, coroutine)[source]#
Schedule coroutine
to be executed after delay
seconds.
If a task with task_id
already exists, close coroutine
instead of scheduling it. This
prevents unawaited coroutine warnings. Don’t pass a coroutine that’ll be re-used elsewhere.
@@ -440,7 +440,7 @@ prevents unawaited coroutine warnings. Don’t pass a coroutine that’ll be re-
-
-create_task(coro, *, suppressed_exceptions=(), event_loop=None, **kwargs)[source]#
+create_task(coro, *, suppressed_exceptions=(), event_loop=None, **kwargs)[source]#
Wrapper for creating an asyncio.Task
which logs exceptions raised in the task.
If the event_loop
kwarg is provided, the task is created from that event loop,
otherwise the running loop is used.
diff --git a/v7.1.1/.buildinfo b/v7.1.1/.buildinfo
index d10a2f81..7af2e143 100644
--- a/v7.1.1/.buildinfo
+++ b/v7.1.1/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 3d72aeaca8dbe0872f012ca519de3ed5
+config: d77a3056664af0417ec5295cfca9b7bb
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.1.1/.doctrees/changelog.doctree b/v7.1.1/.doctrees/changelog.doctree
index ce082cf4..7926ead7 100644
Binary files a/v7.1.1/.doctrees/changelog.doctree and b/v7.1.1/.doctrees/changelog.doctree differ
diff --git a/v7.1.1/.doctrees/environment.pickle b/v7.1.1/.doctrees/environment.pickle
index 29625c20..ea87a8e7 100644
Binary files a/v7.1.1/.doctrees/environment.pickle and b/v7.1.1/.doctrees/environment.pickle differ
diff --git a/v7.1.1/.doctrees/index.doctree b/v7.1.1/.doctrees/index.doctree
index 475b101a..e6170add 100644
Binary files a/v7.1.1/.doctrees/index.doctree and b/v7.1.1/.doctrees/index.doctree differ
diff --git a/v7.1.1/.doctrees/output/botcore.async_stats.doctree b/v7.1.1/.doctrees/output/botcore.async_stats.doctree
index cc9a5579..7f53e1fd 100644
Binary files a/v7.1.1/.doctrees/output/botcore.async_stats.doctree and b/v7.1.1/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v7.1.1/.doctrees/output/botcore.doctree b/v7.1.1/.doctrees/output/botcore.doctree
index 7f48316f..ea4e7fe7 100644
Binary files a/v7.1.1/.doctrees/output/botcore.doctree and b/v7.1.1/.doctrees/output/botcore.doctree differ
diff --git a/v7.1.1/.doctrees/output/botcore.exts.doctree b/v7.1.1/.doctrees/output/botcore.exts.doctree
index 22def401..b1caed24 100644
Binary files a/v7.1.1/.doctrees/output/botcore.exts.doctree and b/v7.1.1/.doctrees/output/botcore.exts.doctree differ
diff --git a/v7.1.1/.doctrees/output/botcore.site_api.doctree b/v7.1.1/.doctrees/output/botcore.site_api.doctree
index 866ebf75..53f0593f 100644
Binary files a/v7.1.1/.doctrees/output/botcore.site_api.doctree and b/v7.1.1/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v7.1.1/.doctrees/output/botcore.utils.caching.doctree b/v7.1.1/.doctrees/output/botcore.utils.caching.doctree
index 4243c945..3c4ab0a3 100644
Binary files a/v7.1.1/.doctrees/output/botcore.utils.caching.doctree and b/v7.1.1/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v7.1.1/.doctrees/output/botcore.utils.channel.doctree b/v7.1.1/.doctrees/output/botcore.utils.channel.doctree
index 41af823d..7ed6e475 100644
Binary files a/v7.1.1/.doctrees/output/botcore.utils.channel.doctree and b/v7.1.1/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v7.1.1/.doctrees/output/botcore.utils.doctree b/v7.1.1/.doctrees/output/botcore.utils.doctree
index 6a00248f..12da6605 100644
Binary files a/v7.1.1/.doctrees/output/botcore.utils.doctree and b/v7.1.1/.doctrees/output/botcore.utils.doctree differ
diff --git a/v7.1.1/.doctrees/output/botcore.utils.logging.doctree b/v7.1.1/.doctrees/output/botcore.utils.logging.doctree
index ae9a8693..78b1ac56 100644
Binary files a/v7.1.1/.doctrees/output/botcore.utils.logging.doctree and b/v7.1.1/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v7.1.1/.doctrees/output/botcore.utils.members.doctree b/v7.1.1/.doctrees/output/botcore.utils.members.doctree
index e0739238..0c26e1ee 100644
Binary files a/v7.1.1/.doctrees/output/botcore.utils.members.doctree and b/v7.1.1/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v7.1.1/.doctrees/output/botcore.utils.regex.doctree b/v7.1.1/.doctrees/output/botcore.utils.regex.doctree
index 4cb8fc47..a98d783f 100644
Binary files a/v7.1.1/.doctrees/output/botcore.utils.regex.doctree and b/v7.1.1/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v7.1.1/.doctrees/output/botcore.utils.scheduling.doctree b/v7.1.1/.doctrees/output/botcore.utils.scheduling.doctree
index fe94761f..98036aec 100644
Binary files a/v7.1.1/.doctrees/output/botcore.utils.scheduling.doctree and b/v7.1.1/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v7.1.2/.buildinfo b/v7.1.2/.buildinfo
index 58dd9c4d..10b844ec 100644
--- a/v7.1.2/.buildinfo
+++ b/v7.1.2/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: c8e4e51015972b1782c9f56ab3b2a058
+config: 52bec8d79ccb2ae6ef8cd01915d561fb
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.1.2/.doctrees/changelog.doctree b/v7.1.2/.doctrees/changelog.doctree
index 19a9d15c..2b9a29bb 100644
Binary files a/v7.1.2/.doctrees/changelog.doctree and b/v7.1.2/.doctrees/changelog.doctree differ
diff --git a/v7.1.2/.doctrees/environment.pickle b/v7.1.2/.doctrees/environment.pickle
index 2576886a..34225239 100644
Binary files a/v7.1.2/.doctrees/environment.pickle and b/v7.1.2/.doctrees/environment.pickle differ
diff --git a/v7.1.2/.doctrees/index.doctree b/v7.1.2/.doctrees/index.doctree
index feaea480..4dfb1343 100644
Binary files a/v7.1.2/.doctrees/index.doctree and b/v7.1.2/.doctrees/index.doctree differ
diff --git a/v7.1.2/.doctrees/output/botcore.async_stats.doctree b/v7.1.2/.doctrees/output/botcore.async_stats.doctree
index 90ee1539..f114e2d9 100644
Binary files a/v7.1.2/.doctrees/output/botcore.async_stats.doctree and b/v7.1.2/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v7.1.2/.doctrees/output/botcore.doctree b/v7.1.2/.doctrees/output/botcore.doctree
index 17befd7a..84486fb4 100644
Binary files a/v7.1.2/.doctrees/output/botcore.doctree and b/v7.1.2/.doctrees/output/botcore.doctree differ
diff --git a/v7.1.2/.doctrees/output/botcore.exts.doctree b/v7.1.2/.doctrees/output/botcore.exts.doctree
index fb658098..a8f51230 100644
Binary files a/v7.1.2/.doctrees/output/botcore.exts.doctree and b/v7.1.2/.doctrees/output/botcore.exts.doctree differ
diff --git a/v7.1.2/.doctrees/output/botcore.site_api.doctree b/v7.1.2/.doctrees/output/botcore.site_api.doctree
index 227bfa81..0bf6d16c 100644
Binary files a/v7.1.2/.doctrees/output/botcore.site_api.doctree and b/v7.1.2/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v7.1.2/.doctrees/output/botcore.utils.caching.doctree b/v7.1.2/.doctrees/output/botcore.utils.caching.doctree
index fd8a6be1..df7d35b4 100644
Binary files a/v7.1.2/.doctrees/output/botcore.utils.caching.doctree and b/v7.1.2/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v7.1.2/.doctrees/output/botcore.utils.channel.doctree b/v7.1.2/.doctrees/output/botcore.utils.channel.doctree
index 7fbc07bf..998a4932 100644
Binary files a/v7.1.2/.doctrees/output/botcore.utils.channel.doctree and b/v7.1.2/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v7.1.2/.doctrees/output/botcore.utils.doctree b/v7.1.2/.doctrees/output/botcore.utils.doctree
index 40658e41..c8abe8f1 100644
Binary files a/v7.1.2/.doctrees/output/botcore.utils.doctree and b/v7.1.2/.doctrees/output/botcore.utils.doctree differ
diff --git a/v7.1.2/.doctrees/output/botcore.utils.logging.doctree b/v7.1.2/.doctrees/output/botcore.utils.logging.doctree
index 8fea9eaf..2734e8fa 100644
Binary files a/v7.1.2/.doctrees/output/botcore.utils.logging.doctree and b/v7.1.2/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v7.1.2/.doctrees/output/botcore.utils.members.doctree b/v7.1.2/.doctrees/output/botcore.utils.members.doctree
index 4d7e1df6..f40a0b98 100644
Binary files a/v7.1.2/.doctrees/output/botcore.utils.members.doctree and b/v7.1.2/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v7.1.2/.doctrees/output/botcore.utils.regex.doctree b/v7.1.2/.doctrees/output/botcore.utils.regex.doctree
index bae3c227..43e1b656 100644
Binary files a/v7.1.2/.doctrees/output/botcore.utils.regex.doctree and b/v7.1.2/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v7.1.2/.doctrees/output/botcore.utils.scheduling.doctree b/v7.1.2/.doctrees/output/botcore.utils.scheduling.doctree
index b8c1d479..018dea1e 100644
Binary files a/v7.1.2/.doctrees/output/botcore.utils.scheduling.doctree and b/v7.1.2/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v7.1.3/.buildinfo b/v7.1.3/.buildinfo
index 03f282b8..3f6357fb 100644
--- a/v7.1.3/.buildinfo
+++ b/v7.1.3/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 2e0ecc9fc5633ec128d8a86512331f70
+config: 89bd8bde973b87043b38fe763dc7044c
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.1.3/.doctrees/changelog.doctree b/v7.1.3/.doctrees/changelog.doctree
index 96f19f5d..14d77be5 100644
Binary files a/v7.1.3/.doctrees/changelog.doctree and b/v7.1.3/.doctrees/changelog.doctree differ
diff --git a/v7.1.3/.doctrees/environment.pickle b/v7.1.3/.doctrees/environment.pickle
index 08539380..8db6422d 100644
Binary files a/v7.1.3/.doctrees/environment.pickle and b/v7.1.3/.doctrees/environment.pickle differ
diff --git a/v7.1.3/.doctrees/index.doctree b/v7.1.3/.doctrees/index.doctree
index 769ff768..a6dd1c51 100644
Binary files a/v7.1.3/.doctrees/index.doctree and b/v7.1.3/.doctrees/index.doctree differ
diff --git a/v7.1.3/.doctrees/output/botcore.async_stats.doctree b/v7.1.3/.doctrees/output/botcore.async_stats.doctree
index 8700bede..1daaa312 100644
Binary files a/v7.1.3/.doctrees/output/botcore.async_stats.doctree and b/v7.1.3/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v7.1.3/.doctrees/output/botcore.doctree b/v7.1.3/.doctrees/output/botcore.doctree
index 74d72ee0..3f993365 100644
Binary files a/v7.1.3/.doctrees/output/botcore.doctree and b/v7.1.3/.doctrees/output/botcore.doctree differ
diff --git a/v7.1.3/.doctrees/output/botcore.exts.doctree b/v7.1.3/.doctrees/output/botcore.exts.doctree
index 2ba0fbe3..50a570c6 100644
Binary files a/v7.1.3/.doctrees/output/botcore.exts.doctree and b/v7.1.3/.doctrees/output/botcore.exts.doctree differ
diff --git a/v7.1.3/.doctrees/output/botcore.site_api.doctree b/v7.1.3/.doctrees/output/botcore.site_api.doctree
index f43c7c3a..6338430c 100644
Binary files a/v7.1.3/.doctrees/output/botcore.site_api.doctree and b/v7.1.3/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v7.1.3/.doctrees/output/botcore.utils.caching.doctree b/v7.1.3/.doctrees/output/botcore.utils.caching.doctree
index 7c13e0a5..82519159 100644
Binary files a/v7.1.3/.doctrees/output/botcore.utils.caching.doctree and b/v7.1.3/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v7.1.3/.doctrees/output/botcore.utils.channel.doctree b/v7.1.3/.doctrees/output/botcore.utils.channel.doctree
index 36947a9b..ba9ee7a3 100644
Binary files a/v7.1.3/.doctrees/output/botcore.utils.channel.doctree and b/v7.1.3/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v7.1.3/.doctrees/output/botcore.utils.doctree b/v7.1.3/.doctrees/output/botcore.utils.doctree
index 070e4c68..f7da7f74 100644
Binary files a/v7.1.3/.doctrees/output/botcore.utils.doctree and b/v7.1.3/.doctrees/output/botcore.utils.doctree differ
diff --git a/v7.1.3/.doctrees/output/botcore.utils.logging.doctree b/v7.1.3/.doctrees/output/botcore.utils.logging.doctree
index 55528c7c..22a2c45d 100644
Binary files a/v7.1.3/.doctrees/output/botcore.utils.logging.doctree and b/v7.1.3/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v7.1.3/.doctrees/output/botcore.utils.members.doctree b/v7.1.3/.doctrees/output/botcore.utils.members.doctree
index b2f45c6a..77763ac4 100644
Binary files a/v7.1.3/.doctrees/output/botcore.utils.members.doctree and b/v7.1.3/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v7.1.3/.doctrees/output/botcore.utils.regex.doctree b/v7.1.3/.doctrees/output/botcore.utils.regex.doctree
index 745315f5..cc1cce81 100644
Binary files a/v7.1.3/.doctrees/output/botcore.utils.regex.doctree and b/v7.1.3/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v7.1.3/.doctrees/output/botcore.utils.scheduling.doctree b/v7.1.3/.doctrees/output/botcore.utils.scheduling.doctree
index 20e2299b..5bc3c846 100644
Binary files a/v7.1.3/.doctrees/output/botcore.utils.scheduling.doctree and b/v7.1.3/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v7.2.0/.buildinfo b/v7.2.0/.buildinfo
index 9f0d6876..9b974aba 100644
--- a/v7.2.0/.buildinfo
+++ b/v7.2.0/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 66d3c0e5ced5052de7ea0f5537e0cea4
+config: 6a1316d83245afd88f45c105971413a1
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.2.0/.doctrees/changelog.doctree b/v7.2.0/.doctrees/changelog.doctree
index 90433cd9..65fc7e36 100644
Binary files a/v7.2.0/.doctrees/changelog.doctree and b/v7.2.0/.doctrees/changelog.doctree differ
diff --git a/v7.2.0/.doctrees/environment.pickle b/v7.2.0/.doctrees/environment.pickle
index 0c7a233e..e95c79f1 100644
Binary files a/v7.2.0/.doctrees/environment.pickle and b/v7.2.0/.doctrees/environment.pickle differ
diff --git a/v7.2.0/.doctrees/index.doctree b/v7.2.0/.doctrees/index.doctree
index 7435ffc4..21084d63 100644
Binary files a/v7.2.0/.doctrees/index.doctree and b/v7.2.0/.doctrees/index.doctree differ
diff --git a/v7.2.0/.doctrees/output/botcore.async_stats.doctree b/v7.2.0/.doctrees/output/botcore.async_stats.doctree
index 5d925c99..bfd4b301 100644
Binary files a/v7.2.0/.doctrees/output/botcore.async_stats.doctree and b/v7.2.0/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v7.2.0/.doctrees/output/botcore.doctree b/v7.2.0/.doctrees/output/botcore.doctree
index 4c3f27c4..d0f903e3 100644
Binary files a/v7.2.0/.doctrees/output/botcore.doctree and b/v7.2.0/.doctrees/output/botcore.doctree differ
diff --git a/v7.2.0/.doctrees/output/botcore.exts.doctree b/v7.2.0/.doctrees/output/botcore.exts.doctree
index 38bd893e..e3108351 100644
Binary files a/v7.2.0/.doctrees/output/botcore.exts.doctree and b/v7.2.0/.doctrees/output/botcore.exts.doctree differ
diff --git a/v7.2.0/.doctrees/output/botcore.site_api.doctree b/v7.2.0/.doctrees/output/botcore.site_api.doctree
index 5c389f19..249f5572 100644
Binary files a/v7.2.0/.doctrees/output/botcore.site_api.doctree and b/v7.2.0/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v7.2.0/.doctrees/output/botcore.utils.caching.doctree b/v7.2.0/.doctrees/output/botcore.utils.caching.doctree
index f167fb05..466fc6a4 100644
Binary files a/v7.2.0/.doctrees/output/botcore.utils.caching.doctree and b/v7.2.0/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v7.2.0/.doctrees/output/botcore.utils.channel.doctree b/v7.2.0/.doctrees/output/botcore.utils.channel.doctree
index bbd30997..2dab826c 100644
Binary files a/v7.2.0/.doctrees/output/botcore.utils.channel.doctree and b/v7.2.0/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v7.2.0/.doctrees/output/botcore.utils.doctree b/v7.2.0/.doctrees/output/botcore.utils.doctree
index 4edffe8e..c9185313 100644
Binary files a/v7.2.0/.doctrees/output/botcore.utils.doctree and b/v7.2.0/.doctrees/output/botcore.utils.doctree differ
diff --git a/v7.2.0/.doctrees/output/botcore.utils.logging.doctree b/v7.2.0/.doctrees/output/botcore.utils.logging.doctree
index 3ec851a5..596df49d 100644
Binary files a/v7.2.0/.doctrees/output/botcore.utils.logging.doctree and b/v7.2.0/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v7.2.0/.doctrees/output/botcore.utils.members.doctree b/v7.2.0/.doctrees/output/botcore.utils.members.doctree
index a759f68c..0a2f3910 100644
Binary files a/v7.2.0/.doctrees/output/botcore.utils.members.doctree and b/v7.2.0/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v7.2.0/.doctrees/output/botcore.utils.regex.doctree b/v7.2.0/.doctrees/output/botcore.utils.regex.doctree
index ba4cd824..cac63c31 100644
Binary files a/v7.2.0/.doctrees/output/botcore.utils.regex.doctree and b/v7.2.0/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v7.2.0/.doctrees/output/botcore.utils.scheduling.doctree b/v7.2.0/.doctrees/output/botcore.utils.scheduling.doctree
index 44ca44e5..cbc43409 100644
Binary files a/v7.2.0/.doctrees/output/botcore.utils.scheduling.doctree and b/v7.2.0/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v7.2.1/.buildinfo b/v7.2.1/.buildinfo
index c9f1873a..002384ec 100644
--- a/v7.2.1/.buildinfo
+++ b/v7.2.1/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 5592fbfebaf94a6c6a09fed841a94d04
+config: fbc50cd7e9a681c6f7e2a9a461901ab4
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.2.1/.doctrees/changelog.doctree b/v7.2.1/.doctrees/changelog.doctree
index 06600fcf..27455a3d 100644
Binary files a/v7.2.1/.doctrees/changelog.doctree and b/v7.2.1/.doctrees/changelog.doctree differ
diff --git a/v7.2.1/.doctrees/environment.pickle b/v7.2.1/.doctrees/environment.pickle
index 14d988b2..d1c7b2c7 100644
Binary files a/v7.2.1/.doctrees/environment.pickle and b/v7.2.1/.doctrees/environment.pickle differ
diff --git a/v7.2.1/.doctrees/index.doctree b/v7.2.1/.doctrees/index.doctree
index ac9ca882..4cae0aa1 100644
Binary files a/v7.2.1/.doctrees/index.doctree and b/v7.2.1/.doctrees/index.doctree differ
diff --git a/v7.2.1/.doctrees/output/botcore.async_stats.doctree b/v7.2.1/.doctrees/output/botcore.async_stats.doctree
index ed6e11c3..4739f9f5 100644
Binary files a/v7.2.1/.doctrees/output/botcore.async_stats.doctree and b/v7.2.1/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v7.2.1/.doctrees/output/botcore.doctree b/v7.2.1/.doctrees/output/botcore.doctree
index 567d8bd8..30fd0138 100644
Binary files a/v7.2.1/.doctrees/output/botcore.doctree and b/v7.2.1/.doctrees/output/botcore.doctree differ
diff --git a/v7.2.1/.doctrees/output/botcore.exts.doctree b/v7.2.1/.doctrees/output/botcore.exts.doctree
index 6337bfe6..ef057a3e 100644
Binary files a/v7.2.1/.doctrees/output/botcore.exts.doctree and b/v7.2.1/.doctrees/output/botcore.exts.doctree differ
diff --git a/v7.2.1/.doctrees/output/botcore.site_api.doctree b/v7.2.1/.doctrees/output/botcore.site_api.doctree
index e8d33b8f..d020bb14 100644
Binary files a/v7.2.1/.doctrees/output/botcore.site_api.doctree and b/v7.2.1/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v7.2.1/.doctrees/output/botcore.utils.caching.doctree b/v7.2.1/.doctrees/output/botcore.utils.caching.doctree
index e475a6f2..3f1dc9ae 100644
Binary files a/v7.2.1/.doctrees/output/botcore.utils.caching.doctree and b/v7.2.1/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v7.2.1/.doctrees/output/botcore.utils.channel.doctree b/v7.2.1/.doctrees/output/botcore.utils.channel.doctree
index 57895841..8418a41f 100644
Binary files a/v7.2.1/.doctrees/output/botcore.utils.channel.doctree and b/v7.2.1/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v7.2.1/.doctrees/output/botcore.utils.doctree b/v7.2.1/.doctrees/output/botcore.utils.doctree
index 3a1c5ed1..9e87ce42 100644
Binary files a/v7.2.1/.doctrees/output/botcore.utils.doctree and b/v7.2.1/.doctrees/output/botcore.utils.doctree differ
diff --git a/v7.2.1/.doctrees/output/botcore.utils.logging.doctree b/v7.2.1/.doctrees/output/botcore.utils.logging.doctree
index 492285cd..d54355a8 100644
Binary files a/v7.2.1/.doctrees/output/botcore.utils.logging.doctree and b/v7.2.1/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v7.2.1/.doctrees/output/botcore.utils.members.doctree b/v7.2.1/.doctrees/output/botcore.utils.members.doctree
index 44578d76..88aab4ac 100644
Binary files a/v7.2.1/.doctrees/output/botcore.utils.members.doctree and b/v7.2.1/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v7.2.1/.doctrees/output/botcore.utils.regex.doctree b/v7.2.1/.doctrees/output/botcore.utils.regex.doctree
index 45d472be..37cd58fd 100644
Binary files a/v7.2.1/.doctrees/output/botcore.utils.regex.doctree and b/v7.2.1/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v7.2.1/.doctrees/output/botcore.utils.scheduling.doctree b/v7.2.1/.doctrees/output/botcore.utils.scheduling.doctree
index 5317a193..c9f5bdf2 100644
Binary files a/v7.2.1/.doctrees/output/botcore.utils.scheduling.doctree and b/v7.2.1/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v7.2.2/.buildinfo b/v7.2.2/.buildinfo
index 3d418b60..f406cf69 100644
--- a/v7.2.2/.buildinfo
+++ b/v7.2.2/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 912325b000f9d56d05335976428570d3
+config: 68febef217596a928171e2ecc1826403
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.2.2/.doctrees/changelog.doctree b/v7.2.2/.doctrees/changelog.doctree
index 81b6f679..2495574e 100644
Binary files a/v7.2.2/.doctrees/changelog.doctree and b/v7.2.2/.doctrees/changelog.doctree differ
diff --git a/v7.2.2/.doctrees/environment.pickle b/v7.2.2/.doctrees/environment.pickle
index df6671a4..934fd119 100644
Binary files a/v7.2.2/.doctrees/environment.pickle and b/v7.2.2/.doctrees/environment.pickle differ
diff --git a/v7.2.2/.doctrees/index.doctree b/v7.2.2/.doctrees/index.doctree
index 637fc7c1..47865e09 100644
Binary files a/v7.2.2/.doctrees/index.doctree and b/v7.2.2/.doctrees/index.doctree differ
diff --git a/v7.2.2/.doctrees/output/botcore.async_stats.doctree b/v7.2.2/.doctrees/output/botcore.async_stats.doctree
index 1b733716..34d5a42f 100644
Binary files a/v7.2.2/.doctrees/output/botcore.async_stats.doctree and b/v7.2.2/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v7.2.2/.doctrees/output/botcore.doctree b/v7.2.2/.doctrees/output/botcore.doctree
index 05561998..04f67149 100644
Binary files a/v7.2.2/.doctrees/output/botcore.doctree and b/v7.2.2/.doctrees/output/botcore.doctree differ
diff --git a/v7.2.2/.doctrees/output/botcore.exts.doctree b/v7.2.2/.doctrees/output/botcore.exts.doctree
index 6f2e6588..6a7f325f 100644
Binary files a/v7.2.2/.doctrees/output/botcore.exts.doctree and b/v7.2.2/.doctrees/output/botcore.exts.doctree differ
diff --git a/v7.2.2/.doctrees/output/botcore.site_api.doctree b/v7.2.2/.doctrees/output/botcore.site_api.doctree
index f3984618..08fd89d4 100644
Binary files a/v7.2.2/.doctrees/output/botcore.site_api.doctree and b/v7.2.2/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v7.2.2/.doctrees/output/botcore.utils.caching.doctree b/v7.2.2/.doctrees/output/botcore.utils.caching.doctree
index d004c723..465bf351 100644
Binary files a/v7.2.2/.doctrees/output/botcore.utils.caching.doctree and b/v7.2.2/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v7.2.2/.doctrees/output/botcore.utils.channel.doctree b/v7.2.2/.doctrees/output/botcore.utils.channel.doctree
index 99ed23a6..3ac0b1db 100644
Binary files a/v7.2.2/.doctrees/output/botcore.utils.channel.doctree and b/v7.2.2/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v7.2.2/.doctrees/output/botcore.utils.doctree b/v7.2.2/.doctrees/output/botcore.utils.doctree
index f3204643..c23f3cf5 100644
Binary files a/v7.2.2/.doctrees/output/botcore.utils.doctree and b/v7.2.2/.doctrees/output/botcore.utils.doctree differ
diff --git a/v7.2.2/.doctrees/output/botcore.utils.logging.doctree b/v7.2.2/.doctrees/output/botcore.utils.logging.doctree
index 59d56a52..22d12bfe 100644
Binary files a/v7.2.2/.doctrees/output/botcore.utils.logging.doctree and b/v7.2.2/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v7.2.2/.doctrees/output/botcore.utils.members.doctree b/v7.2.2/.doctrees/output/botcore.utils.members.doctree
index 54898751..a808cb56 100644
Binary files a/v7.2.2/.doctrees/output/botcore.utils.members.doctree and b/v7.2.2/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v7.2.2/.doctrees/output/botcore.utils.regex.doctree b/v7.2.2/.doctrees/output/botcore.utils.regex.doctree
index f77c8520..33930660 100644
Binary files a/v7.2.2/.doctrees/output/botcore.utils.regex.doctree and b/v7.2.2/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v7.2.2/.doctrees/output/botcore.utils.scheduling.doctree b/v7.2.2/.doctrees/output/botcore.utils.scheduling.doctree
index d6d24030..a1d7a29d 100644
Binary files a/v7.2.2/.doctrees/output/botcore.utils.scheduling.doctree and b/v7.2.2/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v7.3.0/.buildinfo b/v7.3.0/.buildinfo
index d424f655..c4601d53 100644
--- a/v7.3.0/.buildinfo
+++ b/v7.3.0/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 3ed6ad5400f809919cdd647f11ecaa8f
+config: c15380a7d7845a8d7b5aab461dc6add0
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.3.0/.doctrees/changelog.doctree b/v7.3.0/.doctrees/changelog.doctree
index daafa254..1853f388 100644
Binary files a/v7.3.0/.doctrees/changelog.doctree and b/v7.3.0/.doctrees/changelog.doctree differ
diff --git a/v7.3.0/.doctrees/environment.pickle b/v7.3.0/.doctrees/environment.pickle
index 070cc861..ff7e3780 100644
Binary files a/v7.3.0/.doctrees/environment.pickle and b/v7.3.0/.doctrees/environment.pickle differ
diff --git a/v7.3.0/.doctrees/index.doctree b/v7.3.0/.doctrees/index.doctree
index 534a6158..59b3298b 100644
Binary files a/v7.3.0/.doctrees/index.doctree and b/v7.3.0/.doctrees/index.doctree differ
diff --git a/v7.3.0/.doctrees/output/botcore.async_stats.doctree b/v7.3.0/.doctrees/output/botcore.async_stats.doctree
index a8bf4639..e41bec80 100644
Binary files a/v7.3.0/.doctrees/output/botcore.async_stats.doctree and b/v7.3.0/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v7.3.0/.doctrees/output/botcore.doctree b/v7.3.0/.doctrees/output/botcore.doctree
index 7a3fa1b7..d58622a4 100644
Binary files a/v7.3.0/.doctrees/output/botcore.doctree and b/v7.3.0/.doctrees/output/botcore.doctree differ
diff --git a/v7.3.0/.doctrees/output/botcore.exts.doctree b/v7.3.0/.doctrees/output/botcore.exts.doctree
index 1245a17f..20d30637 100644
Binary files a/v7.3.0/.doctrees/output/botcore.exts.doctree and b/v7.3.0/.doctrees/output/botcore.exts.doctree differ
diff --git a/v7.3.0/.doctrees/output/botcore.site_api.doctree b/v7.3.0/.doctrees/output/botcore.site_api.doctree
index cc6816a3..af932ba6 100644
Binary files a/v7.3.0/.doctrees/output/botcore.site_api.doctree and b/v7.3.0/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v7.3.0/.doctrees/output/botcore.utils.caching.doctree b/v7.3.0/.doctrees/output/botcore.utils.caching.doctree
index 2ca4972d..0084b8ca 100644
Binary files a/v7.3.0/.doctrees/output/botcore.utils.caching.doctree and b/v7.3.0/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v7.3.0/.doctrees/output/botcore.utils.channel.doctree b/v7.3.0/.doctrees/output/botcore.utils.channel.doctree
index b56656d4..d238be41 100644
Binary files a/v7.3.0/.doctrees/output/botcore.utils.channel.doctree and b/v7.3.0/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v7.3.0/.doctrees/output/botcore.utils.doctree b/v7.3.0/.doctrees/output/botcore.utils.doctree
index 0ebfb7af..7a4d167e 100644
Binary files a/v7.3.0/.doctrees/output/botcore.utils.doctree and b/v7.3.0/.doctrees/output/botcore.utils.doctree differ
diff --git a/v7.3.0/.doctrees/output/botcore.utils.interactions.doctree b/v7.3.0/.doctrees/output/botcore.utils.interactions.doctree
index 8efd87e7..b53ea748 100644
Binary files a/v7.3.0/.doctrees/output/botcore.utils.interactions.doctree and b/v7.3.0/.doctrees/output/botcore.utils.interactions.doctree differ
diff --git a/v7.3.0/.doctrees/output/botcore.utils.logging.doctree b/v7.3.0/.doctrees/output/botcore.utils.logging.doctree
index 47b53409..0d7d2d66 100644
Binary files a/v7.3.0/.doctrees/output/botcore.utils.logging.doctree and b/v7.3.0/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v7.3.0/.doctrees/output/botcore.utils.members.doctree b/v7.3.0/.doctrees/output/botcore.utils.members.doctree
index 15347bcf..2af2b490 100644
Binary files a/v7.3.0/.doctrees/output/botcore.utils.members.doctree and b/v7.3.0/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v7.3.0/.doctrees/output/botcore.utils.regex.doctree b/v7.3.0/.doctrees/output/botcore.utils.regex.doctree
index 9b29ee80..0d8ea806 100644
Binary files a/v7.3.0/.doctrees/output/botcore.utils.regex.doctree and b/v7.3.0/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v7.3.0/.doctrees/output/botcore.utils.scheduling.doctree b/v7.3.0/.doctrees/output/botcore.utils.scheduling.doctree
index a9d61ef5..a980a088 100644
Binary files a/v7.3.0/.doctrees/output/botcore.utils.scheduling.doctree and b/v7.3.0/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v7.3.1/.buildinfo b/v7.3.1/.buildinfo
index a92e7847..c75106ff 100644
--- a/v7.3.1/.buildinfo
+++ b/v7.3.1/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: b2a3a4c5ec624e1e751de203ca95a52f
+config: b081ca76d3d4642b797ccfc5f11bfa44
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.3.1/.doctrees/changelog.doctree b/v7.3.1/.doctrees/changelog.doctree
index d17fbb3c..db49694a 100644
Binary files a/v7.3.1/.doctrees/changelog.doctree and b/v7.3.1/.doctrees/changelog.doctree differ
diff --git a/v7.3.1/.doctrees/environment.pickle b/v7.3.1/.doctrees/environment.pickle
index e013e5d1..031130e1 100644
Binary files a/v7.3.1/.doctrees/environment.pickle and b/v7.3.1/.doctrees/environment.pickle differ
diff --git a/v7.3.1/.doctrees/index.doctree b/v7.3.1/.doctrees/index.doctree
index 9a19f48d..dffd1f2e 100644
Binary files a/v7.3.1/.doctrees/index.doctree and b/v7.3.1/.doctrees/index.doctree differ
diff --git a/v7.3.1/.doctrees/output/botcore.async_stats.doctree b/v7.3.1/.doctrees/output/botcore.async_stats.doctree
index 35ee9083..af9d535c 100644
Binary files a/v7.3.1/.doctrees/output/botcore.async_stats.doctree and b/v7.3.1/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v7.3.1/.doctrees/output/botcore.doctree b/v7.3.1/.doctrees/output/botcore.doctree
index f3106a89..7eb0a347 100644
Binary files a/v7.3.1/.doctrees/output/botcore.doctree and b/v7.3.1/.doctrees/output/botcore.doctree differ
diff --git a/v7.3.1/.doctrees/output/botcore.exts.doctree b/v7.3.1/.doctrees/output/botcore.exts.doctree
index c69605af..44c92727 100644
Binary files a/v7.3.1/.doctrees/output/botcore.exts.doctree and b/v7.3.1/.doctrees/output/botcore.exts.doctree differ
diff --git a/v7.3.1/.doctrees/output/botcore.site_api.doctree b/v7.3.1/.doctrees/output/botcore.site_api.doctree
index 68c6234f..0e309c97 100644
Binary files a/v7.3.1/.doctrees/output/botcore.site_api.doctree and b/v7.3.1/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v7.3.1/.doctrees/output/botcore.utils.caching.doctree b/v7.3.1/.doctrees/output/botcore.utils.caching.doctree
index 6ddbfd26..f2571a2b 100644
Binary files a/v7.3.1/.doctrees/output/botcore.utils.caching.doctree and b/v7.3.1/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v7.3.1/.doctrees/output/botcore.utils.channel.doctree b/v7.3.1/.doctrees/output/botcore.utils.channel.doctree
index 260e31c1..6b2bd2b0 100644
Binary files a/v7.3.1/.doctrees/output/botcore.utils.channel.doctree and b/v7.3.1/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v7.3.1/.doctrees/output/botcore.utils.doctree b/v7.3.1/.doctrees/output/botcore.utils.doctree
index 32b90359..965d1af8 100644
Binary files a/v7.3.1/.doctrees/output/botcore.utils.doctree and b/v7.3.1/.doctrees/output/botcore.utils.doctree differ
diff --git a/v7.3.1/.doctrees/output/botcore.utils.interactions.doctree b/v7.3.1/.doctrees/output/botcore.utils.interactions.doctree
index 40d26b0c..f8431d0e 100644
Binary files a/v7.3.1/.doctrees/output/botcore.utils.interactions.doctree and b/v7.3.1/.doctrees/output/botcore.utils.interactions.doctree differ
diff --git a/v7.3.1/.doctrees/output/botcore.utils.logging.doctree b/v7.3.1/.doctrees/output/botcore.utils.logging.doctree
index 90e2155d..91aa9e7a 100644
Binary files a/v7.3.1/.doctrees/output/botcore.utils.logging.doctree and b/v7.3.1/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v7.3.1/.doctrees/output/botcore.utils.members.doctree b/v7.3.1/.doctrees/output/botcore.utils.members.doctree
index a88150aa..52043db5 100644
Binary files a/v7.3.1/.doctrees/output/botcore.utils.members.doctree and b/v7.3.1/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v7.3.1/.doctrees/output/botcore.utils.regex.doctree b/v7.3.1/.doctrees/output/botcore.utils.regex.doctree
index fb6d3255..b0ef1436 100644
Binary files a/v7.3.1/.doctrees/output/botcore.utils.regex.doctree and b/v7.3.1/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v7.3.1/.doctrees/output/botcore.utils.scheduling.doctree b/v7.3.1/.doctrees/output/botcore.utils.scheduling.doctree
index b4f62f5a..12e8f902 100644
Binary files a/v7.3.1/.doctrees/output/botcore.utils.scheduling.doctree and b/v7.3.1/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v7.4.0-beta1/.buildinfo b/v7.4.0-beta1/.buildinfo
index 5fe6c574..efee9999 100644
--- a/v7.4.0-beta1/.buildinfo
+++ b/v7.4.0-beta1/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 7b674ac128c524e17d018c0db60246c4
+config: c6d4aad86b792559c221279654b30788
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.4.0-beta1/.doctrees/changelog.doctree b/v7.4.0-beta1/.doctrees/changelog.doctree
index 918fff63..f865f553 100644
Binary files a/v7.4.0-beta1/.doctrees/changelog.doctree and b/v7.4.0-beta1/.doctrees/changelog.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/environment.pickle b/v7.4.0-beta1/.doctrees/environment.pickle
index 5164a5a4..9f036132 100644
Binary files a/v7.4.0-beta1/.doctrees/environment.pickle and b/v7.4.0-beta1/.doctrees/environment.pickle differ
diff --git a/v7.4.0-beta1/.doctrees/index.doctree b/v7.4.0-beta1/.doctrees/index.doctree
index 219f2858..ebd33345 100644
Binary files a/v7.4.0-beta1/.doctrees/index.doctree and b/v7.4.0-beta1/.doctrees/index.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/output/botcore.async_stats.doctree b/v7.4.0-beta1/.doctrees/output/botcore.async_stats.doctree
index 60e70985..342feddd 100644
Binary files a/v7.4.0-beta1/.doctrees/output/botcore.async_stats.doctree and b/v7.4.0-beta1/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/output/botcore.doctree b/v7.4.0-beta1/.doctrees/output/botcore.doctree
index a1e1e4ae..3c25336d 100644
Binary files a/v7.4.0-beta1/.doctrees/output/botcore.doctree and b/v7.4.0-beta1/.doctrees/output/botcore.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/output/botcore.exts.doctree b/v7.4.0-beta1/.doctrees/output/botcore.exts.doctree
index 6d8c51bf..8561c737 100644
Binary files a/v7.4.0-beta1/.doctrees/output/botcore.exts.doctree and b/v7.4.0-beta1/.doctrees/output/botcore.exts.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/output/botcore.site_api.doctree b/v7.4.0-beta1/.doctrees/output/botcore.site_api.doctree
index f7ce746a..72024d1e 100644
Binary files a/v7.4.0-beta1/.doctrees/output/botcore.site_api.doctree and b/v7.4.0-beta1/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/output/botcore.utils.caching.doctree b/v7.4.0-beta1/.doctrees/output/botcore.utils.caching.doctree
index 6707fbfc..7ec3f36a 100644
Binary files a/v7.4.0-beta1/.doctrees/output/botcore.utils.caching.doctree and b/v7.4.0-beta1/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/output/botcore.utils.channel.doctree b/v7.4.0-beta1/.doctrees/output/botcore.utils.channel.doctree
index 6ce3a309..cd7032d3 100644
Binary files a/v7.4.0-beta1/.doctrees/output/botcore.utils.channel.doctree and b/v7.4.0-beta1/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/output/botcore.utils.doctree b/v7.4.0-beta1/.doctrees/output/botcore.utils.doctree
index 61065f76..b8374ec7 100644
Binary files a/v7.4.0-beta1/.doctrees/output/botcore.utils.doctree and b/v7.4.0-beta1/.doctrees/output/botcore.utils.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/output/botcore.utils.interactions.doctree b/v7.4.0-beta1/.doctrees/output/botcore.utils.interactions.doctree
index c63fa4c0..1e02a0cf 100644
Binary files a/v7.4.0-beta1/.doctrees/output/botcore.utils.interactions.doctree and b/v7.4.0-beta1/.doctrees/output/botcore.utils.interactions.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/output/botcore.utils.logging.doctree b/v7.4.0-beta1/.doctrees/output/botcore.utils.logging.doctree
index efc78609..4a0b4c62 100644
Binary files a/v7.4.0-beta1/.doctrees/output/botcore.utils.logging.doctree and b/v7.4.0-beta1/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/output/botcore.utils.members.doctree b/v7.4.0-beta1/.doctrees/output/botcore.utils.members.doctree
index c5b1a850..6fa3dd0e 100644
Binary files a/v7.4.0-beta1/.doctrees/output/botcore.utils.members.doctree and b/v7.4.0-beta1/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/output/botcore.utils.regex.doctree b/v7.4.0-beta1/.doctrees/output/botcore.utils.regex.doctree
index ea729d70..59f73183 100644
Binary files a/v7.4.0-beta1/.doctrees/output/botcore.utils.regex.doctree and b/v7.4.0-beta1/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v7.4.0-beta1/.doctrees/output/botcore.utils.scheduling.doctree b/v7.4.0-beta1/.doctrees/output/botcore.utils.scheduling.doctree
index 08bc29f1..54cdbc1e 100644
Binary files a/v7.4.0-beta1/.doctrees/output/botcore.utils.scheduling.doctree and b/v7.4.0-beta1/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v7.4.0/.buildinfo b/v7.4.0/.buildinfo
index f70cd330..ef8ac41f 100644
--- a/v7.4.0/.buildinfo
+++ b/v7.4.0/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 788b91701630ea6651cdc3d77d56da9f
+config: ecb27ede344dd7caa92bc1af08247839
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.4.0/.doctrees/changelog.doctree b/v7.4.0/.doctrees/changelog.doctree
index 7e96ce51..16fa6ee8 100644
Binary files a/v7.4.0/.doctrees/changelog.doctree and b/v7.4.0/.doctrees/changelog.doctree differ
diff --git a/v7.4.0/.doctrees/environment.pickle b/v7.4.0/.doctrees/environment.pickle
index 8dd11700..a7de8b8f 100644
Binary files a/v7.4.0/.doctrees/environment.pickle and b/v7.4.0/.doctrees/environment.pickle differ
diff --git a/v7.4.0/.doctrees/index.doctree b/v7.4.0/.doctrees/index.doctree
index 067a8013..54f75920 100644
Binary files a/v7.4.0/.doctrees/index.doctree and b/v7.4.0/.doctrees/index.doctree differ
diff --git a/v7.4.0/.doctrees/output/botcore.async_stats.doctree b/v7.4.0/.doctrees/output/botcore.async_stats.doctree
index fb1cd252..ce1f35d3 100644
Binary files a/v7.4.0/.doctrees/output/botcore.async_stats.doctree and b/v7.4.0/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v7.4.0/.doctrees/output/botcore.doctree b/v7.4.0/.doctrees/output/botcore.doctree
index 98b6d10a..616fc46d 100644
Binary files a/v7.4.0/.doctrees/output/botcore.doctree and b/v7.4.0/.doctrees/output/botcore.doctree differ
diff --git a/v7.4.0/.doctrees/output/botcore.exts.doctree b/v7.4.0/.doctrees/output/botcore.exts.doctree
index c3135de8..adb95ae5 100644
Binary files a/v7.4.0/.doctrees/output/botcore.exts.doctree and b/v7.4.0/.doctrees/output/botcore.exts.doctree differ
diff --git a/v7.4.0/.doctrees/output/botcore.site_api.doctree b/v7.4.0/.doctrees/output/botcore.site_api.doctree
index 23ffb63b..7cac75d3 100644
Binary files a/v7.4.0/.doctrees/output/botcore.site_api.doctree and b/v7.4.0/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v7.4.0/.doctrees/output/botcore.utils.caching.doctree b/v7.4.0/.doctrees/output/botcore.utils.caching.doctree
index 45a12d62..152b0665 100644
Binary files a/v7.4.0/.doctrees/output/botcore.utils.caching.doctree and b/v7.4.0/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v7.4.0/.doctrees/output/botcore.utils.channel.doctree b/v7.4.0/.doctrees/output/botcore.utils.channel.doctree
index f7bcfe37..e90bd3d4 100644
Binary files a/v7.4.0/.doctrees/output/botcore.utils.channel.doctree and b/v7.4.0/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v7.4.0/.doctrees/output/botcore.utils.doctree b/v7.4.0/.doctrees/output/botcore.utils.doctree
index 0107dee7..bb125f8a 100644
Binary files a/v7.4.0/.doctrees/output/botcore.utils.doctree and b/v7.4.0/.doctrees/output/botcore.utils.doctree differ
diff --git a/v7.4.0/.doctrees/output/botcore.utils.interactions.doctree b/v7.4.0/.doctrees/output/botcore.utils.interactions.doctree
index ed92ac37..77d27a3b 100644
Binary files a/v7.4.0/.doctrees/output/botcore.utils.interactions.doctree and b/v7.4.0/.doctrees/output/botcore.utils.interactions.doctree differ
diff --git a/v7.4.0/.doctrees/output/botcore.utils.logging.doctree b/v7.4.0/.doctrees/output/botcore.utils.logging.doctree
index 7b145bdf..29f2a911 100644
Binary files a/v7.4.0/.doctrees/output/botcore.utils.logging.doctree and b/v7.4.0/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v7.4.0/.doctrees/output/botcore.utils.members.doctree b/v7.4.0/.doctrees/output/botcore.utils.members.doctree
index 46c4024d..204049d8 100644
Binary files a/v7.4.0/.doctrees/output/botcore.utils.members.doctree and b/v7.4.0/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v7.4.0/.doctrees/output/botcore.utils.regex.doctree b/v7.4.0/.doctrees/output/botcore.utils.regex.doctree
index 76cd2684..7b9a22c3 100644
Binary files a/v7.4.0/.doctrees/output/botcore.utils.regex.doctree and b/v7.4.0/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v7.4.0/.doctrees/output/botcore.utils.scheduling.doctree b/v7.4.0/.doctrees/output/botcore.utils.scheduling.doctree
index de8e63c7..a0b4437f 100644
Binary files a/v7.4.0/.doctrees/output/botcore.utils.scheduling.doctree and b/v7.4.0/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v7.5.0/.buildinfo b/v7.5.0/.buildinfo
index 6186a282..d6007813 100644
--- a/v7.5.0/.buildinfo
+++ b/v7.5.0/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 22b8b6070291fc7255be5a5777702e69
+config: 10c518aeecd25b1d04041d885ed1f85e
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.5.0/.doctrees/changelog.doctree b/v7.5.0/.doctrees/changelog.doctree
index 646856ca..aaeac96a 100644
Binary files a/v7.5.0/.doctrees/changelog.doctree and b/v7.5.0/.doctrees/changelog.doctree differ
diff --git a/v7.5.0/.doctrees/environment.pickle b/v7.5.0/.doctrees/environment.pickle
index f66fd5e6..051fe98b 100644
Binary files a/v7.5.0/.doctrees/environment.pickle and b/v7.5.0/.doctrees/environment.pickle differ
diff --git a/v7.5.0/.doctrees/index.doctree b/v7.5.0/.doctrees/index.doctree
index 7b0074de..99e1864e 100644
Binary files a/v7.5.0/.doctrees/index.doctree and b/v7.5.0/.doctrees/index.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.async_stats.doctree b/v7.5.0/.doctrees/output/botcore.async_stats.doctree
index 7a989f20..a559a896 100644
Binary files a/v7.5.0/.doctrees/output/botcore.async_stats.doctree and b/v7.5.0/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.doctree b/v7.5.0/.doctrees/output/botcore.doctree
index 04e37411..69c4fbaa 100644
Binary files a/v7.5.0/.doctrees/output/botcore.doctree and b/v7.5.0/.doctrees/output/botcore.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.exts.doctree b/v7.5.0/.doctrees/output/botcore.exts.doctree
index 60d0be14..c8c7f1ae 100644
Binary files a/v7.5.0/.doctrees/output/botcore.exts.doctree and b/v7.5.0/.doctrees/output/botcore.exts.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.site_api.doctree b/v7.5.0/.doctrees/output/botcore.site_api.doctree
index 7bd5f795..17cea10e 100644
Binary files a/v7.5.0/.doctrees/output/botcore.site_api.doctree and b/v7.5.0/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.utils.caching.doctree b/v7.5.0/.doctrees/output/botcore.utils.caching.doctree
index e766d4b5..1b4271ba 100644
Binary files a/v7.5.0/.doctrees/output/botcore.utils.caching.doctree and b/v7.5.0/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.utils.channel.doctree b/v7.5.0/.doctrees/output/botcore.utils.channel.doctree
index cf7021bd..ad86095b 100644
Binary files a/v7.5.0/.doctrees/output/botcore.utils.channel.doctree and b/v7.5.0/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.utils.commands.doctree b/v7.5.0/.doctrees/output/botcore.utils.commands.doctree
index 3e630d3b..7abae0c3 100644
Binary files a/v7.5.0/.doctrees/output/botcore.utils.commands.doctree and b/v7.5.0/.doctrees/output/botcore.utils.commands.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.utils.doctree b/v7.5.0/.doctrees/output/botcore.utils.doctree
index f58081ad..8f24db75 100644
Binary files a/v7.5.0/.doctrees/output/botcore.utils.doctree and b/v7.5.0/.doctrees/output/botcore.utils.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.utils.interactions.doctree b/v7.5.0/.doctrees/output/botcore.utils.interactions.doctree
index a1a058a3..afe6879e 100644
Binary files a/v7.5.0/.doctrees/output/botcore.utils.interactions.doctree and b/v7.5.0/.doctrees/output/botcore.utils.interactions.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.utils.logging.doctree b/v7.5.0/.doctrees/output/botcore.utils.logging.doctree
index b93ec156..3768ced0 100644
Binary files a/v7.5.0/.doctrees/output/botcore.utils.logging.doctree and b/v7.5.0/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.utils.members.doctree b/v7.5.0/.doctrees/output/botcore.utils.members.doctree
index 27af2853..5e781b83 100644
Binary files a/v7.5.0/.doctrees/output/botcore.utils.members.doctree and b/v7.5.0/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.utils.regex.doctree b/v7.5.0/.doctrees/output/botcore.utils.regex.doctree
index eb625188..f1d8e244 100644
Binary files a/v7.5.0/.doctrees/output/botcore.utils.regex.doctree and b/v7.5.0/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v7.5.0/.doctrees/output/botcore.utils.scheduling.doctree b/v7.5.0/.doctrees/output/botcore.utils.scheduling.doctree
index e6579455..2b27789d 100644
Binary files a/v7.5.0/.doctrees/output/botcore.utils.scheduling.doctree and b/v7.5.0/.doctrees/output/botcore.utils.scheduling.doctree differ
--
cgit v1.2.3