From ec4f5ce89a50911edd1500db89b0a6da66c63039 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.
StatsClientBasestatsd.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.
@@ -409,7 +409,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.
@@ -444,7 +444,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
@@ -458,7 +458,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.
@@ -473,12 +473,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
@@ -324,7 +324,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.
@@ -319,12 +319,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:
@@ -373,7 +373,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 934a1823..55aa99f5 100644
--- a/main/output/botcore.utils.logging.html
+++ b/main/output/botcore.utils.logging.html
@@ -305,12 +305,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)
@@ -334,7 +334,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 5f704337..c9b7a38c 100644
--- a/main/output/botcore.utils.members.html
+++ b/main/output/botcore.utils.members.html
@@ -305,7 +305,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:
@@ -319,7 +319,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 12915d43..aa6abd21 100644
--- a/main/output/botcore.utils.regex.html
+++ b/main/output/botcore.utils.regex.html
@@ -305,7 +305,7 @@
Common regular expressions.
-
-DISCORD_INVITE[source]#
+DISCORD_INVITE[source]#
Regex for Discord server invites.
Warning
@@ -319,7 +319,7 @@ such as
-
-FORMATTED_CODE_REGEX[source]#
+FORMATTED_CODE_REGEX[source]#
Regex for formatted code, using Discord’s code blocks.
@@ -327,7 +327,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 6dae6060..54c80d5c 100644
--- a/main/output/botcore.utils.scheduling.html
+++ b/main/output/botcore.utils.scheduling.html
@@ -305,7 +305,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
@@ -319,7 +319,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:
@@ -336,7 +336,7 @@ the same ID used to schedule it.
-
-__init__(name)[source]#
+__init__(name)[source]#
Initialize a new Scheduler instance.
- Parameters:
@@ -347,7 +347,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:
@@ -361,7 +361,7 @@ the same ID used to schedule it.
-
-cancel_all()[source]#
+cancel_all()[source]#
Unschedule all known tasks.
- Return type:
@@ -372,7 +372,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.
@@ -391,7 +391,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.
@@ -414,7 +414,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.
@@ -436,7 +436,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 edc88cb7..7ee2ba3d 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: f820ec9a5f7141c10c6240b7b51da878
+config: 41b10eb9b809076e23286fd2bcfa8ede
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.1.1/.doctrees/changelog.doctree b/v7.1.1/.doctrees/changelog.doctree
index 326336f9..03ae106f 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 1dc4407a..90010de4 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 345801b7..e1819eae 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 3aa1578b..bc88f336 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 4ce152f9..559f476a 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 2b7ceee9..5559eb11 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 106daa1d..7cb59208 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 56b3ccf2..db18e918 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 a0a5f0fa..69a2d966 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 bb559325..19e4a85a 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 0ce43017..7316b2f8 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 795d8f10..3f0d0db9 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 ef2db697..c0d72378 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 a42e3288..9fc9ac42 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 dbc57baf..105f3621 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: 872ebe843cfcfa2bcc2954ea43438ef5
+config: 54123ef2736446bc932340339659c2a0
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.1.2/.doctrees/changelog.doctree b/v7.1.2/.doctrees/changelog.doctree
index 63399c76..28526ced 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 77119f3c..987b6ffa 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 2f71e251..e8870bae 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 01da7495..3baf83a8 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 2dba999a..d112b2f9 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 745bfd72..5ae7b038 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 33418b5c..24d17a52 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 e8c3b8d5..51bb8030 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 45863521..fce2e8bc 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 98879518..54783df4 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 85e0a0bb..f29824fe 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 a770c772..2303f51a 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 51aa9a5d..f595debf 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 4b0b4324..669340c6 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 26b835dc..e4ab51ec 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: 8585c237a4ff953ee5cb9099c771b210
+config: 5c824700ed0c6ef5c15eae2dee577c79
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.1.3/.doctrees/changelog.doctree b/v7.1.3/.doctrees/changelog.doctree
index ce9ced2b..3afba5dc 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 c384a8e6..9ee2d4de 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 8f4b4698..4c0fc0f3 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 5a6e7215..66844c8c 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 b629f65c..b3ee7a3e 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 c0741a0a..c0fdd9a2 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 a2382a9b..07a36ff4 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 bae1c7f6..2415904a 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 c307dfdb..3fbdc726 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 05048a29..588ebbb3 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 f85a973c..71acb3fb 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 a2c779af..636045dd 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 72cc04bf..7d0ca84c 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 abc09d71..95ea1861 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 bd9523c1..39595cde 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: ff8f0102e9db25622e6e8eb6d1f51ac4
+config: 92806dd392c75a18e9da5b500aefc024
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.2.0/.doctrees/changelog.doctree b/v7.2.0/.doctrees/changelog.doctree
index 022701a2..03a10539 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 d4f01eb7..e4707071 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 75a781f5..ca558611 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 ec1ea4ad..565c7815 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 d578e3fa..b15c89fe 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 daab19f1..5a2b1b53 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 59b0d5b1..528305b8 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 5e89dedb..03fe7adb 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 59534989..72a984ce 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 12923480..d261ac33 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 b3f3a85d..da063772 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 9676245c..a4a6cba5 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 4ea122e8..23b888c0 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 06bf12ae..1579c395 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 298e719c..2dd999db 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: ae9d8bea6a710da85792b29c8e4854a7
+config: 7a7419260d69ae5702ca2fe7e4b72a8f
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.2.1/.doctrees/changelog.doctree b/v7.2.1/.doctrees/changelog.doctree
index 414d05f1..00d8a9f3 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 540df593..1fc82193 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 f383a85d..70ba8871 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 6b15c8b5..683c9337 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 e7b50efd..ad5d091e 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 a6d7d89e..cb781a35 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 20f723b9..5868d6ff 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 f8a19a5a..0b992b2f 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 eb77098d..da20803c 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 954078c1..6260f22c 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 d171f0bb..002429b1 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 55fb8b2f..573895b7 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 217d41f4..6d93c5c5 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 c0094f34..f8ac4154 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 8140b93a..30fc0dbd 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: 3391f84b6d5de69d59524e21a4181573
+config: 3da8f526e0f273ca22af39c8cfd654ee
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.2.2/.doctrees/changelog.doctree b/v7.2.2/.doctrees/changelog.doctree
index 7d069653..bbe22735 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 ad6fbdd2..23505e2a 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 754d3588..f978eab2 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 3a06eb1d..cd89dca4 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 409919a3..88e37b47 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 74547cf7..32fff936 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 431ee4ee..fbfd6046 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 9b853156..26a48397 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 38499d05..384c46c9 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 992f840c..a973f917 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 c7353e87..bca4849f 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 286c34ae..325cb5f9 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 6adb1d6c..44269ab2 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 eaac382a..6f9b9c8e 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 b6324f2f..c130bb9b 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: ad89c81ae2c310419f262943a7b04661
+config: 689b9fcee6b741c3ab869ad1a5889122
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.3.0/.doctrees/changelog.doctree b/v7.3.0/.doctrees/changelog.doctree
index b50d2fd8..863dfd18 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 e6426c24..a0386a67 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 b9effdce..64b88bcc 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 f293b4ef..b5f74d8c 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 78bf99cb..fc49713b 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 3d2e592d..1c6ae023 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 f9243bb8..2b07b6f9 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 b0f78c7b..07f64ef9 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 e4bddb4d..8a0f1fc0 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 769f2fe3..548eeabd 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 1e172267..acb5af2a 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 d0fab870..c5d96f02 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 e1acb450..2d835bdf 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 70e48de5..1ef14096 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 84246973..29563cbf 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 82a114c0..8b2e6aeb 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: ea586f6b19d6c7fc9f185676699863de
+config: f4049c39df5dbcfa83c8a731a327e774
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.3.1/.doctrees/changelog.doctree b/v7.3.1/.doctrees/changelog.doctree
index 9b161ab8..8fb4aa74 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 4cf55937..73661cef 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 422b1d27..e40fd856 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 e7129783..b7729f79 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 366adccf..dac37892 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 24578fc9..1c1585f4 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 c1df51c2..3ad733ab 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 c4535980..666d4226 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 0a4374cf..c96b17a5 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 f8f64c3a..8c50ed0a 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 7ec01d16..d1522b9c 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 2d858245..ac50e3ff 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 fff6f415..50519db2 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 d44b4a8a..4e365a1d 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 8dbc7345..35ad4c49 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 656f2ed6..7a9a885a 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: dd3634a558272f436954a8be2e6fef3b
+config: 340f1ca9f55d170a60b96346c7a1d395
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.4.0-beta1/.doctrees/changelog.doctree b/v7.4.0-beta1/.doctrees/changelog.doctree
index 8ec62d03..7ed71b0f 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 c3b08e29..c9a8c1bc 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 ec85df74..44502df9 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 3d3d86b3..a7356f5d 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 d577184e..18360fd1 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 b01b853b..d78dd7c6 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 b5895289..cd3d8cd4 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 43b77413..e22f6ed5 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 13c36c02..979ab6fe 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 bb93c061..17c7cbaf 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 41a4ec38..8c39fed9 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 c26db657..41cbef9b 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 ee316e86..ef836230 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 eb2c2ae2..e6fbc68e 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 bcae8232..18c8fbfa 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 d57a9d6c..29c42584 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: 1ab0dc60ed6ab23136b999e6efa657bb
+config: 5e5946073462df65a201f2d9cd2873bc
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.4.0/.doctrees/changelog.doctree b/v7.4.0/.doctrees/changelog.doctree
index a09782d5..a263fc31 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 30547700..5e51dcd7 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 0b036f8e..6d76e200 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 7e28285f..8ee699df 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 871daf37..dee379c5 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 f831700f..848d40ac 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 4e91ac4d..99c31313 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 67304dd7..f9c68dae 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 df1ea2bf..47596ec0 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 e764f43f..f2bc96ee 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 f400cc8b..ee2fba94 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 3ff38015..79cc5cb6 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 61fe8342..01ffacf0 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 35f196f7..a3ab4c0b 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 472e6e4e..efbd1da0 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
--
cgit v1.2.3