From 6c17e8382c048c1e29c12b479e8e213a4fedec24 Mon Sep 17 00:00:00 2001
From: ChrisLovering 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.
@@ -422,7 +430,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.
@@ -457,7 +465,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
@@ -471,7 +479,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.
@@ -486,12 +494,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
@@ -337,7 +345,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.
@@ -332,12 +340,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:
@@ -386,7 +394,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 8cb5e2c2..6921910d 100644
--- a/main/output/botcore.utils.logging.html
+++ b/main/output/botcore.utils.logging.html
@@ -207,6 +207,14 @@
main
+
-
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
@@ -318,12 +326,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)
@@ -347,7 +355,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 57a0355f..c5965653 100644
--- a/main/output/botcore.utils.members.html
+++ b/main/output/botcore.utils.members.html
@@ -207,6 +207,14 @@
main
+
-
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
@@ -318,7 +326,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:
@@ -332,7 +340,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 47311ab3..1dd40790 100644
--- a/main/output/botcore.utils.regex.html
+++ b/main/output/botcore.utils.regex.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
@@ -318,7 +326,7 @@
Common regular expressions.
-
-DISCORD_INVITE[source]#
+DISCORD_INVITE[source]#
Regex for Discord server invites.
Warning
@@ -332,7 +340,7 @@ such as
-
-FORMATTED_CODE_REGEX[source]#
+FORMATTED_CODE_REGEX[source]#
Regex for formatted code, using Discord’s code blocks.
@@ -340,7 +348,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 28aa9097..4679c754 100644
--- a/main/output/botcore.utils.scheduling.html
+++ b/main/output/botcore.utils.scheduling.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
@@ -318,7 +326,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
@@ -332,7 +340,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:
@@ -349,7 +357,7 @@ the same ID used to schedule it.
-
-__init__(name)[source]#
+__init__(name)[source]#
Initialize a new Scheduler instance.
- Parameters:
@@ -360,7 +368,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:
@@ -374,7 +382,7 @@ the same ID used to schedule it.
-
-cancel_all()[source]#
+cancel_all()[source]#
Unschedule all known tasks.
- Return type:
@@ -385,7 +393,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.
@@ -404,7 +412,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.
@@ -427,7 +435,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.
@@ -449,7 +457,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.
@@ -457,7 +465,7 @@ otherwise the running loop is used.
- Parameters:
coro (Coroutine[Any, Any, TypeVar(TASK_RETURN)]) – The function to call.
-suppressed_exceptions (tuple[type[Exception]]) – Exceptions to be handled by the task.
+suppressed_exceptions (tuple[type[Exception], ...]) – Exceptions to be handled by the task.
event_loop (asyncio.AbstractEventLoop) – The loop to create the task from.
kwargs – Passed to asyncio.create_task().
diff --git a/main/py-modindex.html b/main/py-modindex.html
index ec53ebc9..5c6ed1ba 100644
--- a/main/py-modindex.html
+++ b/main/py-modindex.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/main/search.html b/main/search.html
index 5d8b7283..f0b96416 100644
--- a/main/search.html
+++ b/main/search.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/main/versions.html b/main/versions.html
index 36f13183..14945281 100644
--- a/main/versions.html
+++ b/main/versions.html
@@ -206,6 +206,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
@@ -325,6 +333,18 @@
- latest
+ -
+ v8.0.0-beta.4
+
+
+
+
+ -
+ v8.0.0-beta.3
+
+
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.1/.buildinfo b/v7.1.1/.buildinfo
index 53f59f89..f51e1739 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: 6f689548e307105a7a7c4c7a819b5935
+config: 3174494785b3fb416491f117e7a984a5
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.1.1/.doctrees/changelog.doctree b/v7.1.1/.doctrees/changelog.doctree
index c67ab0b9..8c556ca7 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 c8732c38..74f7bf9e 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 b6dbffac..a20feaa4 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 d6e03e85..2e969fb6 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 2e3d9dbf..398adfe4 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 8a2c5b56..2a6a42a1 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 5099475c..0bafe956 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 d3649f94..26abd9d2 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 52bdbc23..f65b6a5b 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 5dc34e4b..84649575 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 43a81d79..841cb8f9 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 0cf55c73..a984e3cd 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 325f92d0..16b21d61 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 8c3cf2b0..d96186b6 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.1/changelog.html b/v7.1.1/changelog.html
index efefa67f..df8a15b3 100644
--- a/v7.1.1/changelog.html
+++ b/v7.1.1/changelog.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.1/genindex.html b/v7.1.1/genindex.html
index a2582329..2016e511 100644
--- a/v7.1.1/genindex.html
+++ b/v7.1.1/genindex.html
@@ -202,6 +202,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.1/index.html b/v7.1.1/index.html
index e9038298..24a12f46 100644
--- a/v7.1.1/index.html
+++ b/v7.1.1/index.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.1/output/botcore.async_stats.html b/v7.1.1/output/botcore.async_stats.html
index 0b6da561..58f57fd6 100644
--- a/v7.1.1/output/botcore.async_stats.html
+++ b/v7.1.1/output/botcore.async_stats.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.1/output/botcore.exts.html b/v7.1.1/output/botcore.exts.html
index bf4561bf..547153ee 100644
--- a/v7.1.1/output/botcore.exts.html
+++ b/v7.1.1/output/botcore.exts.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.1/output/botcore.html b/v7.1.1/output/botcore.html
index 9a16333e..59e1c47d 100644
--- a/v7.1.1/output/botcore.html
+++ b/v7.1.1/output/botcore.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.1/output/botcore.site_api.html b/v7.1.1/output/botcore.site_api.html
index c538f854..ffd7d6fd 100644
--- a/v7.1.1/output/botcore.site_api.html
+++ b/v7.1.1/output/botcore.site_api.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.1/output/botcore.utils.caching.html b/v7.1.1/output/botcore.utils.caching.html
index 9beb05d4..32f6ece2 100644
--- a/v7.1.1/output/botcore.utils.caching.html
+++ b/v7.1.1/output/botcore.utils.caching.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.1/output/botcore.utils.channel.html b/v7.1.1/output/botcore.utils.channel.html
index bfad77dc..18654f8c 100644
--- a/v7.1.1/output/botcore.utils.channel.html
+++ b/v7.1.1/output/botcore.utils.channel.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.1/output/botcore.utils.html b/v7.1.1/output/botcore.utils.html
index 95641ca6..f176ae0d 100644
--- a/v7.1.1/output/botcore.utils.html
+++ b/v7.1.1/output/botcore.utils.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.1/output/botcore.utils.logging.html b/v7.1.1/output/botcore.utils.logging.html
index eadf61dd..d36d8f68 100644
--- a/v7.1.1/output/botcore.utils.logging.html
+++ b/v7.1.1/output/botcore.utils.logging.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.1/output/botcore.utils.members.html b/v7.1.1/output/botcore.utils.members.html
index 7e9c397b..ac67f0d1 100644
--- a/v7.1.1/output/botcore.utils.members.html
+++ b/v7.1.1/output/botcore.utils.members.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.1/output/botcore.utils.regex.html b/v7.1.1/output/botcore.utils.regex.html
index 0cfea1fc..9f23e16f 100644
--- a/v7.1.1/output/botcore.utils.regex.html
+++ b/v7.1.1/output/botcore.utils.regex.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.1/output/botcore.utils.scheduling.html b/v7.1.1/output/botcore.utils.scheduling.html
index e23f93a9..4c7726e3 100644
--- a/v7.1.1/output/botcore.utils.scheduling.html
+++ b/v7.1.1/output/botcore.utils.scheduling.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.1/py-modindex.html b/v7.1.1/py-modindex.html
index a3a956ac..db994e47 100644
--- a/v7.1.1/py-modindex.html
+++ b/v7.1.1/py-modindex.html
@@ -202,6 +202,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.1/search.html b/v7.1.1/search.html
index 5919205a..8903973f 100644
--- a/v7.1.1/search.html
+++ b/v7.1.1/search.html
@@ -201,6 +201,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.1/versions.html b/v7.1.1/versions.html
index a0170803..7e83709e 100644
--- a/v7.1.1/versions.html
+++ b/v7.1.1/versions.html
@@ -203,6 +203,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
@@ -322,6 +330,18 @@
- latest
+ -
+ v8.0.0-beta.4
+
+
+
+
+ -
+ v8.0.0-beta.3
+
+
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.2/.buildinfo b/v7.1.2/.buildinfo
index 34f87131..f39c12e9 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: 9041e494263dc0654b857716ffa372e2
+config: 5e4973ade22e08049de6df8c6a516ce4
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.1.2/.doctrees/changelog.doctree b/v7.1.2/.doctrees/changelog.doctree
index 10fc727e..b9c8ff06 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 026e6f9e..48602c92 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 a41469b9..023302eb 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 f9df0925..952e0008 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 20817e49..6c4c0e2d 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 aa9c3333..6da20724 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 04b6f22f..4b17a2ab 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 eef394cc..3cf6c76d 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 a6b38c21..551338a0 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 dbc1fac2..ebcfe94b 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 31478116..51ac9518 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 a59ce2da..ef026a35 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 5aa11847..da818421 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 10408e6d..573b481b 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.2/changelog.html b/v7.1.2/changelog.html
index 6dcec601..68931ea1 100644
--- a/v7.1.2/changelog.html
+++ b/v7.1.2/changelog.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.2/genindex.html b/v7.1.2/genindex.html
index ab007b00..1de8d494 100644
--- a/v7.1.2/genindex.html
+++ b/v7.1.2/genindex.html
@@ -202,6 +202,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.2/index.html b/v7.1.2/index.html
index f98467b7..cd071e9e 100644
--- a/v7.1.2/index.html
+++ b/v7.1.2/index.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.2/output/botcore.async_stats.html b/v7.1.2/output/botcore.async_stats.html
index d019bb23..317e8e80 100644
--- a/v7.1.2/output/botcore.async_stats.html
+++ b/v7.1.2/output/botcore.async_stats.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.2/output/botcore.exts.html b/v7.1.2/output/botcore.exts.html
index 4ff5ad5c..e9b0cc40 100644
--- a/v7.1.2/output/botcore.exts.html
+++ b/v7.1.2/output/botcore.exts.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.2/output/botcore.html b/v7.1.2/output/botcore.html
index 78081ed5..a8295f54 100644
--- a/v7.1.2/output/botcore.html
+++ b/v7.1.2/output/botcore.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.2/output/botcore.site_api.html b/v7.1.2/output/botcore.site_api.html
index 46441b5b..caaf582e 100644
--- a/v7.1.2/output/botcore.site_api.html
+++ b/v7.1.2/output/botcore.site_api.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.2/output/botcore.utils.caching.html b/v7.1.2/output/botcore.utils.caching.html
index 0aebe5ef..ed771f35 100644
--- a/v7.1.2/output/botcore.utils.caching.html
+++ b/v7.1.2/output/botcore.utils.caching.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.2/output/botcore.utils.channel.html b/v7.1.2/output/botcore.utils.channel.html
index cc3eb0f0..f499b6cd 100644
--- a/v7.1.2/output/botcore.utils.channel.html
+++ b/v7.1.2/output/botcore.utils.channel.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.2/output/botcore.utils.html b/v7.1.2/output/botcore.utils.html
index 2f1d9e21..cfc44460 100644
--- a/v7.1.2/output/botcore.utils.html
+++ b/v7.1.2/output/botcore.utils.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.2/output/botcore.utils.logging.html b/v7.1.2/output/botcore.utils.logging.html
index c49227ae..fa79c4ad 100644
--- a/v7.1.2/output/botcore.utils.logging.html
+++ b/v7.1.2/output/botcore.utils.logging.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.2/output/botcore.utils.members.html b/v7.1.2/output/botcore.utils.members.html
index 363d8e10..81b06c80 100644
--- a/v7.1.2/output/botcore.utils.members.html
+++ b/v7.1.2/output/botcore.utils.members.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.2/output/botcore.utils.regex.html b/v7.1.2/output/botcore.utils.regex.html
index d6f6ff58..88759556 100644
--- a/v7.1.2/output/botcore.utils.regex.html
+++ b/v7.1.2/output/botcore.utils.regex.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.2/output/botcore.utils.scheduling.html b/v7.1.2/output/botcore.utils.scheduling.html
index 2674dbaa..f0168bdd 100644
--- a/v7.1.2/output/botcore.utils.scheduling.html
+++ b/v7.1.2/output/botcore.utils.scheduling.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.2/py-modindex.html b/v7.1.2/py-modindex.html
index a14b7904..29f1a3a4 100644
--- a/v7.1.2/py-modindex.html
+++ b/v7.1.2/py-modindex.html
@@ -202,6 +202,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.2/search.html b/v7.1.2/search.html
index 16a05311..ecc4ff40 100644
--- a/v7.1.2/search.html
+++ b/v7.1.2/search.html
@@ -201,6 +201,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.2/versions.html b/v7.1.2/versions.html
index 2044bb39..5413e1fc 100644
--- a/v7.1.2/versions.html
+++ b/v7.1.2/versions.html
@@ -203,6 +203,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
@@ -322,6 +330,18 @@
- latest
+ -
+ v8.0.0-beta.4
+
+
+
+
+ -
+ v8.0.0-beta.3
+
+
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.3/.buildinfo b/v7.1.3/.buildinfo
index 132a2495..1053f667 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: 5b9db56f452a4e18a1ec5f064495c6f1
+config: 96decc192a67d0e5adeec99ba4c689c7
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.1.3/.doctrees/changelog.doctree b/v7.1.3/.doctrees/changelog.doctree
index 4d43760d..4e2595b6 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 1a26db7b..dfe6d46d 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 c9b40463..40529769 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 4a69f0e6..f986e3d8 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 4c9b3363..320a8b3a 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 361d1319..14faec84 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 b5e0337e..52fdf700 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 8942176d..accfcead 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 60b519ee..9c1b4d4f 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 d68876fc..341ab7b8 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 454f9445..2d006f94 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 f64f8591..7dc8f312 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 d88bb5a6..f6ebc2f6 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 2a1e2695..cecd3742 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.1.3/changelog.html b/v7.1.3/changelog.html
index 8a5aa5ce..e5d8d6b3 100644
--- a/v7.1.3/changelog.html
+++ b/v7.1.3/changelog.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.3/genindex.html b/v7.1.3/genindex.html
index f66bfc94..b94a6610 100644
--- a/v7.1.3/genindex.html
+++ b/v7.1.3/genindex.html
@@ -202,6 +202,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.3/index.html b/v7.1.3/index.html
index 656d0d7d..5473ea08 100644
--- a/v7.1.3/index.html
+++ b/v7.1.3/index.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.3/output/botcore.async_stats.html b/v7.1.3/output/botcore.async_stats.html
index 106cf3a0..6033eaee 100644
--- a/v7.1.3/output/botcore.async_stats.html
+++ b/v7.1.3/output/botcore.async_stats.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.3/output/botcore.exts.html b/v7.1.3/output/botcore.exts.html
index 50c2b5d5..a99dd677 100644
--- a/v7.1.3/output/botcore.exts.html
+++ b/v7.1.3/output/botcore.exts.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.3/output/botcore.html b/v7.1.3/output/botcore.html
index 972f0433..537ec1f3 100644
--- a/v7.1.3/output/botcore.html
+++ b/v7.1.3/output/botcore.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.3/output/botcore.site_api.html b/v7.1.3/output/botcore.site_api.html
index 9ae71ac8..dd699ec9 100644
--- a/v7.1.3/output/botcore.site_api.html
+++ b/v7.1.3/output/botcore.site_api.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.3/output/botcore.utils.caching.html b/v7.1.3/output/botcore.utils.caching.html
index 3d9bf37b..96dcb332 100644
--- a/v7.1.3/output/botcore.utils.caching.html
+++ b/v7.1.3/output/botcore.utils.caching.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.3/output/botcore.utils.channel.html b/v7.1.3/output/botcore.utils.channel.html
index ff698354..1fd38a0e 100644
--- a/v7.1.3/output/botcore.utils.channel.html
+++ b/v7.1.3/output/botcore.utils.channel.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.3/output/botcore.utils.html b/v7.1.3/output/botcore.utils.html
index 94ca023a..9fbaa6fe 100644
--- a/v7.1.3/output/botcore.utils.html
+++ b/v7.1.3/output/botcore.utils.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.3/output/botcore.utils.logging.html b/v7.1.3/output/botcore.utils.logging.html
index eb5e3d37..b9768528 100644
--- a/v7.1.3/output/botcore.utils.logging.html
+++ b/v7.1.3/output/botcore.utils.logging.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.3/output/botcore.utils.members.html b/v7.1.3/output/botcore.utils.members.html
index 7b7141f3..515171da 100644
--- a/v7.1.3/output/botcore.utils.members.html
+++ b/v7.1.3/output/botcore.utils.members.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.3/output/botcore.utils.regex.html b/v7.1.3/output/botcore.utils.regex.html
index e505867b..5cca6209 100644
--- a/v7.1.3/output/botcore.utils.regex.html
+++ b/v7.1.3/output/botcore.utils.regex.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.3/output/botcore.utils.scheduling.html b/v7.1.3/output/botcore.utils.scheduling.html
index 184e555d..880e2cf2 100644
--- a/v7.1.3/output/botcore.utils.scheduling.html
+++ b/v7.1.3/output/botcore.utils.scheduling.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.3/py-modindex.html b/v7.1.3/py-modindex.html
index b2e9a2d2..73c809a8 100644
--- a/v7.1.3/py-modindex.html
+++ b/v7.1.3/py-modindex.html
@@ -202,6 +202,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.3/search.html b/v7.1.3/search.html
index c9b698ad..b76fffa2 100644
--- a/v7.1.3/search.html
+++ b/v7.1.3/search.html
@@ -201,6 +201,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.1.3/versions.html b/v7.1.3/versions.html
index 22854cdb..cab27a92 100644
--- a/v7.1.3/versions.html
+++ b/v7.1.3/versions.html
@@ -203,6 +203,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
@@ -322,6 +330,18 @@
- latest
+ -
+ v8.0.0-beta.4
+
+
+
+
+ -
+ v8.0.0-beta.3
+
+
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.0/.buildinfo b/v7.2.0/.buildinfo
index 5648207b..52ab5dd6 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: 70db8b0aa3226304d8a1b30dc046d484
+config: 55bbac2fdfd2b9f300473f187a24ffee
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.2.0/.doctrees/changelog.doctree b/v7.2.0/.doctrees/changelog.doctree
index e1013493..8031d3e8 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 38db7ca0..6e3abad6 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 4c583489..b66cdfbc 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 cc8a3f12..2f425272 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 3f79f7d4..d3e7c714 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 1607dd27..d86973ab 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 c2a270ac..ef91c138 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 9489ef15..0436c10d 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 8c329b46..a987341c 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 6626c216..03287cc5 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 748f0541..3b1adb0f 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 35212262..e34609f9 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 8d6fe3a1..b71db686 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 347ecf7d..be1a8892 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.0/changelog.html b/v7.2.0/changelog.html
index a4f49339..ecb5a7bd 100644
--- a/v7.2.0/changelog.html
+++ b/v7.2.0/changelog.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.0/genindex.html b/v7.2.0/genindex.html
index bfbbec9f..8588a309 100644
--- a/v7.2.0/genindex.html
+++ b/v7.2.0/genindex.html
@@ -202,6 +202,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.0/index.html b/v7.2.0/index.html
index 2b0b3c1b..b3ff7e6f 100644
--- a/v7.2.0/index.html
+++ b/v7.2.0/index.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.0/output/botcore.async_stats.html b/v7.2.0/output/botcore.async_stats.html
index 3c9e2aa0..f4c29fa5 100644
--- a/v7.2.0/output/botcore.async_stats.html
+++ b/v7.2.0/output/botcore.async_stats.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.0/output/botcore.exts.html b/v7.2.0/output/botcore.exts.html
index d112c31a..0b8e4dec 100644
--- a/v7.2.0/output/botcore.exts.html
+++ b/v7.2.0/output/botcore.exts.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.0/output/botcore.html b/v7.2.0/output/botcore.html
index 0e19a47d..ba01479e 100644
--- a/v7.2.0/output/botcore.html
+++ b/v7.2.0/output/botcore.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.0/output/botcore.site_api.html b/v7.2.0/output/botcore.site_api.html
index 7b5d910f..cdd5e3d5 100644
--- a/v7.2.0/output/botcore.site_api.html
+++ b/v7.2.0/output/botcore.site_api.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.0/output/botcore.utils.caching.html b/v7.2.0/output/botcore.utils.caching.html
index 8a51491f..b0a53817 100644
--- a/v7.2.0/output/botcore.utils.caching.html
+++ b/v7.2.0/output/botcore.utils.caching.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.0/output/botcore.utils.channel.html b/v7.2.0/output/botcore.utils.channel.html
index c61bc6c8..1f5eb572 100644
--- a/v7.2.0/output/botcore.utils.channel.html
+++ b/v7.2.0/output/botcore.utils.channel.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.0/output/botcore.utils.html b/v7.2.0/output/botcore.utils.html
index fe3cce64..c6c133b2 100644
--- a/v7.2.0/output/botcore.utils.html
+++ b/v7.2.0/output/botcore.utils.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.0/output/botcore.utils.logging.html b/v7.2.0/output/botcore.utils.logging.html
index 4a5444ee..8a1390ec 100644
--- a/v7.2.0/output/botcore.utils.logging.html
+++ b/v7.2.0/output/botcore.utils.logging.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.0/output/botcore.utils.members.html b/v7.2.0/output/botcore.utils.members.html
index 92c0f032..c566d29e 100644
--- a/v7.2.0/output/botcore.utils.members.html
+++ b/v7.2.0/output/botcore.utils.members.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.0/output/botcore.utils.regex.html b/v7.2.0/output/botcore.utils.regex.html
index afd2462a..c1456117 100644
--- a/v7.2.0/output/botcore.utils.regex.html
+++ b/v7.2.0/output/botcore.utils.regex.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.0/output/botcore.utils.scheduling.html b/v7.2.0/output/botcore.utils.scheduling.html
index deed1030..a5165fdb 100644
--- a/v7.2.0/output/botcore.utils.scheduling.html
+++ b/v7.2.0/output/botcore.utils.scheduling.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.0/py-modindex.html b/v7.2.0/py-modindex.html
index 6c300ff6..0c605f42 100644
--- a/v7.2.0/py-modindex.html
+++ b/v7.2.0/py-modindex.html
@@ -202,6 +202,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.0/search.html b/v7.2.0/search.html
index d51b3b3d..923437cd 100644
--- a/v7.2.0/search.html
+++ b/v7.2.0/search.html
@@ -201,6 +201,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.0/versions.html b/v7.2.0/versions.html
index 56702286..09c0b7ba 100644
--- a/v7.2.0/versions.html
+++ b/v7.2.0/versions.html
@@ -203,6 +203,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
@@ -322,6 +330,18 @@
- latest
+ -
+ v8.0.0-beta.4
+
+
+
+
+ -
+ v8.0.0-beta.3
+
+
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.1/.buildinfo b/v7.2.1/.buildinfo
index e3a2b7f0..b26a7ba3 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: 2d019f2746164f362e0da2bdcb54b53a
+config: 89d3ecce96bd9b1e23031b50528f194e
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.2.1/.doctrees/changelog.doctree b/v7.2.1/.doctrees/changelog.doctree
index 15fda4c0..0cfbc9e4 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 d7cb70d6..ffeee9d3 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 c355436a..f0bc496d 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 57434c15..f694df3a 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 d0de38da..99ea47f4 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 522b0c89..e24c2ca1 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 f0670c7b..040fd68e 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 ef68ea63..d7a54974 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 d859c5f9..9f491e2f 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 fbfbd130..2b341746 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 9353fbbe..5ac99875 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 55c54971..0894033e 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 73144ed9..c11df4c5 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 b7ddf96c..e1ecd5ff 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.1/changelog.html b/v7.2.1/changelog.html
index 9cdda09f..9ef6d78a 100644
--- a/v7.2.1/changelog.html
+++ b/v7.2.1/changelog.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.1/genindex.html b/v7.2.1/genindex.html
index 2b9ae6df..f45f0ca6 100644
--- a/v7.2.1/genindex.html
+++ b/v7.2.1/genindex.html
@@ -202,6 +202,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.1/index.html b/v7.2.1/index.html
index f11f15bd..b4ee1c79 100644
--- a/v7.2.1/index.html
+++ b/v7.2.1/index.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.1/output/botcore.async_stats.html b/v7.2.1/output/botcore.async_stats.html
index fef804a3..5e378006 100644
--- a/v7.2.1/output/botcore.async_stats.html
+++ b/v7.2.1/output/botcore.async_stats.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.1/output/botcore.exts.html b/v7.2.1/output/botcore.exts.html
index 020a0474..b891befd 100644
--- a/v7.2.1/output/botcore.exts.html
+++ b/v7.2.1/output/botcore.exts.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.1/output/botcore.html b/v7.2.1/output/botcore.html
index e32c7f26..942512aa 100644
--- a/v7.2.1/output/botcore.html
+++ b/v7.2.1/output/botcore.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.1/output/botcore.site_api.html b/v7.2.1/output/botcore.site_api.html
index 090c2737..d420ec1e 100644
--- a/v7.2.1/output/botcore.site_api.html
+++ b/v7.2.1/output/botcore.site_api.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.1/output/botcore.utils.caching.html b/v7.2.1/output/botcore.utils.caching.html
index adeee4c8..57c06923 100644
--- a/v7.2.1/output/botcore.utils.caching.html
+++ b/v7.2.1/output/botcore.utils.caching.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.1/output/botcore.utils.channel.html b/v7.2.1/output/botcore.utils.channel.html
index abae3f83..d8663774 100644
--- a/v7.2.1/output/botcore.utils.channel.html
+++ b/v7.2.1/output/botcore.utils.channel.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.1/output/botcore.utils.html b/v7.2.1/output/botcore.utils.html
index a6712e24..6d0efd32 100644
--- a/v7.2.1/output/botcore.utils.html
+++ b/v7.2.1/output/botcore.utils.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.1/output/botcore.utils.logging.html b/v7.2.1/output/botcore.utils.logging.html
index 1dfce6f6..fb1aaaba 100644
--- a/v7.2.1/output/botcore.utils.logging.html
+++ b/v7.2.1/output/botcore.utils.logging.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.1/output/botcore.utils.members.html b/v7.2.1/output/botcore.utils.members.html
index c330a726..79c129bf 100644
--- a/v7.2.1/output/botcore.utils.members.html
+++ b/v7.2.1/output/botcore.utils.members.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.1/output/botcore.utils.regex.html b/v7.2.1/output/botcore.utils.regex.html
index feea8903..ca792e86 100644
--- a/v7.2.1/output/botcore.utils.regex.html
+++ b/v7.2.1/output/botcore.utils.regex.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.1/output/botcore.utils.scheduling.html b/v7.2.1/output/botcore.utils.scheduling.html
index 604ff152..d9d39486 100644
--- a/v7.2.1/output/botcore.utils.scheduling.html
+++ b/v7.2.1/output/botcore.utils.scheduling.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.1/py-modindex.html b/v7.2.1/py-modindex.html
index f4b9ace2..f17b4666 100644
--- a/v7.2.1/py-modindex.html
+++ b/v7.2.1/py-modindex.html
@@ -202,6 +202,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.1/search.html b/v7.2.1/search.html
index 0a405532..3e68d2a3 100644
--- a/v7.2.1/search.html
+++ b/v7.2.1/search.html
@@ -201,6 +201,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.1/versions.html b/v7.2.1/versions.html
index bbe4258f..e6440d47 100644
--- a/v7.2.1/versions.html
+++ b/v7.2.1/versions.html
@@ -203,6 +203,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
@@ -322,6 +330,18 @@
- latest
+ -
+ v8.0.0-beta.4
+
+
+
+
+ -
+ v8.0.0-beta.3
+
+
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.2/.buildinfo b/v7.2.2/.buildinfo
index fbf63e40..2d72cf95 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: 1404948a8edc7b56c78daadc603e7db3
+config: f51abe6acd657a9067857f4e5a7c4241
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.2.2/.doctrees/changelog.doctree b/v7.2.2/.doctrees/changelog.doctree
index 3ace2b95..719458f3 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 d36e3238..ab753347 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 b1456cf3..179a2d09 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 9fe6cf67..84158796 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 2fe60371..f9a9e9dd 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 c065af6b..6dbf7abc 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 3b58c399..be525b3b 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 f3ed7f65..d8be8324 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 831c06bc..92c02cb6 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 f4b8b5a2..496007d0 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 aa4397d6..281e6b4d 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 14b56869..13264a72 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 b80afa14..ba4b2683 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 c87d4086..7f7cf944 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.2.2/changelog.html b/v7.2.2/changelog.html
index 5ec497f6..0ba4b5d2 100644
--- a/v7.2.2/changelog.html
+++ b/v7.2.2/changelog.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.2/genindex.html b/v7.2.2/genindex.html
index 9340865a..ea77589a 100644
--- a/v7.2.2/genindex.html
+++ b/v7.2.2/genindex.html
@@ -202,6 +202,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.2/index.html b/v7.2.2/index.html
index d7dba55a..9cec9bc1 100644
--- a/v7.2.2/index.html
+++ b/v7.2.2/index.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.2/output/botcore.async_stats.html b/v7.2.2/output/botcore.async_stats.html
index ee5f061c..6be1eba4 100644
--- a/v7.2.2/output/botcore.async_stats.html
+++ b/v7.2.2/output/botcore.async_stats.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.2/output/botcore.exts.html b/v7.2.2/output/botcore.exts.html
index c1d87f68..7fbd3e66 100644
--- a/v7.2.2/output/botcore.exts.html
+++ b/v7.2.2/output/botcore.exts.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.2/output/botcore.html b/v7.2.2/output/botcore.html
index 0c249a0b..d104efcb 100644
--- a/v7.2.2/output/botcore.html
+++ b/v7.2.2/output/botcore.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.2/output/botcore.site_api.html b/v7.2.2/output/botcore.site_api.html
index ed8a35a2..6e03ef7a 100644
--- a/v7.2.2/output/botcore.site_api.html
+++ b/v7.2.2/output/botcore.site_api.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.2/output/botcore.utils.caching.html b/v7.2.2/output/botcore.utils.caching.html
index d0cd6fd0..ad1eed8e 100644
--- a/v7.2.2/output/botcore.utils.caching.html
+++ b/v7.2.2/output/botcore.utils.caching.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.2/output/botcore.utils.channel.html b/v7.2.2/output/botcore.utils.channel.html
index c69b54cd..60cce4ae 100644
--- a/v7.2.2/output/botcore.utils.channel.html
+++ b/v7.2.2/output/botcore.utils.channel.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.2/output/botcore.utils.html b/v7.2.2/output/botcore.utils.html
index f9b559c1..a5a86ccd 100644
--- a/v7.2.2/output/botcore.utils.html
+++ b/v7.2.2/output/botcore.utils.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.2/output/botcore.utils.logging.html b/v7.2.2/output/botcore.utils.logging.html
index 7f66c7bd..f3c2e54f 100644
--- a/v7.2.2/output/botcore.utils.logging.html
+++ b/v7.2.2/output/botcore.utils.logging.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.2/output/botcore.utils.members.html b/v7.2.2/output/botcore.utils.members.html
index 0fcf9eee..bbd19ab9 100644
--- a/v7.2.2/output/botcore.utils.members.html
+++ b/v7.2.2/output/botcore.utils.members.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.2/output/botcore.utils.regex.html b/v7.2.2/output/botcore.utils.regex.html
index 3fdbf499..1ae645e5 100644
--- a/v7.2.2/output/botcore.utils.regex.html
+++ b/v7.2.2/output/botcore.utils.regex.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.2/output/botcore.utils.scheduling.html b/v7.2.2/output/botcore.utils.scheduling.html
index d3ce235f..769149a7 100644
--- a/v7.2.2/output/botcore.utils.scheduling.html
+++ b/v7.2.2/output/botcore.utils.scheduling.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.2/py-modindex.html b/v7.2.2/py-modindex.html
index 63d87d32..037b85dc 100644
--- a/v7.2.2/py-modindex.html
+++ b/v7.2.2/py-modindex.html
@@ -202,6 +202,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.2/search.html b/v7.2.2/search.html
index 283ac893..b7440224 100644
--- a/v7.2.2/search.html
+++ b/v7.2.2/search.html
@@ -201,6 +201,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.2.2/versions.html b/v7.2.2/versions.html
index 1c374d29..e1816b95 100644
--- a/v7.2.2/versions.html
+++ b/v7.2.2/versions.html
@@ -203,6 +203,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
@@ -322,6 +330,18 @@
- latest
+ -
+ v8.0.0-beta.4
+
+
+
+
+ -
+ v8.0.0-beta.3
+
+
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.0/.buildinfo b/v7.3.0/.buildinfo
index 9be90e00..cc5e2811 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: bd45f2ebbd2b667234278aa81ba6ce88
+config: 8bdffc18b7be004732210a46679f9f9b
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.3.0/.doctrees/changelog.doctree b/v7.3.0/.doctrees/changelog.doctree
index 623edd21..ce63f99c 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 e717c70e..62a1f626 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 dfbb3b4b..69552397 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 5ff592e5..0e773049 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 7dd6824a..2e2d072b 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 ed993ab7..bb9bfb4d 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 0b58a665..5ca051c1 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 c590b1cb..ddecc190 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 15ee47c5..4311f5d3 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 80fbd361..eed96734 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 8890dbe6..e42544ad 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 bda0a8bb..ee94cb69 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 a378c12a..a5670756 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 1cb0a902..5d5a9514 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 930cae36..1aad84d7 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.0/changelog.html b/v7.3.0/changelog.html
index eb42d676..ead94c40 100644
--- a/v7.3.0/changelog.html
+++ b/v7.3.0/changelog.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.0/genindex.html b/v7.3.0/genindex.html
index 9cd7802a..b017cefe 100644
--- a/v7.3.0/genindex.html
+++ b/v7.3.0/genindex.html
@@ -203,6 +203,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.0/index.html b/v7.3.0/index.html
index eb6876c0..b22cbfdf 100644
--- a/v7.3.0/index.html
+++ b/v7.3.0/index.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.0/output/botcore.async_stats.html b/v7.3.0/output/botcore.async_stats.html
index 57986aa8..7e3cc10d 100644
--- a/v7.3.0/output/botcore.async_stats.html
+++ b/v7.3.0/output/botcore.async_stats.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.0/output/botcore.exts.html b/v7.3.0/output/botcore.exts.html
index e8305c28..2ac3e03c 100644
--- a/v7.3.0/output/botcore.exts.html
+++ b/v7.3.0/output/botcore.exts.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.0/output/botcore.html b/v7.3.0/output/botcore.html
index bbbb6a44..ae2ae8e8 100644
--- a/v7.3.0/output/botcore.html
+++ b/v7.3.0/output/botcore.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.0/output/botcore.site_api.html b/v7.3.0/output/botcore.site_api.html
index 2d3f6b07..4def61a7 100644
--- a/v7.3.0/output/botcore.site_api.html
+++ b/v7.3.0/output/botcore.site_api.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.0/output/botcore.utils.caching.html b/v7.3.0/output/botcore.utils.caching.html
index 48245448..5dd724b9 100644
--- a/v7.3.0/output/botcore.utils.caching.html
+++ b/v7.3.0/output/botcore.utils.caching.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.0/output/botcore.utils.channel.html b/v7.3.0/output/botcore.utils.channel.html
index 417f40c6..59633b74 100644
--- a/v7.3.0/output/botcore.utils.channel.html
+++ b/v7.3.0/output/botcore.utils.channel.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.0/output/botcore.utils.html b/v7.3.0/output/botcore.utils.html
index 12837809..daf285ac 100644
--- a/v7.3.0/output/botcore.utils.html
+++ b/v7.3.0/output/botcore.utils.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.0/output/botcore.utils.interactions.html b/v7.3.0/output/botcore.utils.interactions.html
index 32381960..e2a83daf 100644
--- a/v7.3.0/output/botcore.utils.interactions.html
+++ b/v7.3.0/output/botcore.utils.interactions.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.0/output/botcore.utils.logging.html b/v7.3.0/output/botcore.utils.logging.html
index 0cb223ae..4eacaac2 100644
--- a/v7.3.0/output/botcore.utils.logging.html
+++ b/v7.3.0/output/botcore.utils.logging.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.0/output/botcore.utils.members.html b/v7.3.0/output/botcore.utils.members.html
index 8ca47c65..8bd41816 100644
--- a/v7.3.0/output/botcore.utils.members.html
+++ b/v7.3.0/output/botcore.utils.members.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.0/output/botcore.utils.regex.html b/v7.3.0/output/botcore.utils.regex.html
index b61e27df..e9cfeef8 100644
--- a/v7.3.0/output/botcore.utils.regex.html
+++ b/v7.3.0/output/botcore.utils.regex.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.0/output/botcore.utils.scheduling.html b/v7.3.0/output/botcore.utils.scheduling.html
index 92823d25..8bb14ac3 100644
--- a/v7.3.0/output/botcore.utils.scheduling.html
+++ b/v7.3.0/output/botcore.utils.scheduling.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.0/py-modindex.html b/v7.3.0/py-modindex.html
index 16ffb3e7..a1936969 100644
--- a/v7.3.0/py-modindex.html
+++ b/v7.3.0/py-modindex.html
@@ -203,6 +203,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.0/search.html b/v7.3.0/search.html
index 962d9dc3..b47dcc3e 100644
--- a/v7.3.0/search.html
+++ b/v7.3.0/search.html
@@ -202,6 +202,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.0/versions.html b/v7.3.0/versions.html
index 8c8481af..1e3f79ef 100644
--- a/v7.3.0/versions.html
+++ b/v7.3.0/versions.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
@@ -323,6 +331,18 @@
- latest
+ -
+ v8.0.0-beta.4
+
+
+
+
+ -
+ v8.0.0-beta.3
+
+
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.1/.buildinfo b/v7.3.1/.buildinfo
index b4590f7a..9563901c 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: 3e063d59b04731b817a5a7369cd8c25c
+config: 396bde205cfb9f9af5a746d38675523a
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.3.1/.doctrees/changelog.doctree b/v7.3.1/.doctrees/changelog.doctree
index e8170306..22f8774d 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 efb7324e..c85d5958 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 7b5fc03d..641cfc3c 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 8a42e936..dd0af2bd 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 4b01c89b..b6bb070a 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 adaec3a0..4f7f8931 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 90c2bc25..4ce8bf75 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 54276d28..4556346b 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 60579497..91253d03 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 16855eaf..a4bbe07b 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 6defd3f4..6776caba 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 a524e896..c12a02d0 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 ac0dff41..f61b59f0 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 029aefe4..30ed4d04 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 e4c75c97..7cd660b3 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.3.1/changelog.html b/v7.3.1/changelog.html
index f724a0df..ad03d56d 100644
--- a/v7.3.1/changelog.html
+++ b/v7.3.1/changelog.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.1/genindex.html b/v7.3.1/genindex.html
index 588f4574..f9211659 100644
--- a/v7.3.1/genindex.html
+++ b/v7.3.1/genindex.html
@@ -203,6 +203,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.1/index.html b/v7.3.1/index.html
index 60028ff1..1efc6002 100644
--- a/v7.3.1/index.html
+++ b/v7.3.1/index.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.1/output/botcore.async_stats.html b/v7.3.1/output/botcore.async_stats.html
index 3d986542..d0496ba5 100644
--- a/v7.3.1/output/botcore.async_stats.html
+++ b/v7.3.1/output/botcore.async_stats.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.1/output/botcore.exts.html b/v7.3.1/output/botcore.exts.html
index 83125e3b..f1fb346a 100644
--- a/v7.3.1/output/botcore.exts.html
+++ b/v7.3.1/output/botcore.exts.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.1/output/botcore.html b/v7.3.1/output/botcore.html
index 2aebb250..17f988c6 100644
--- a/v7.3.1/output/botcore.html
+++ b/v7.3.1/output/botcore.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.1/output/botcore.site_api.html b/v7.3.1/output/botcore.site_api.html
index dd853af2..51a4bc6a 100644
--- a/v7.3.1/output/botcore.site_api.html
+++ b/v7.3.1/output/botcore.site_api.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.1/output/botcore.utils.caching.html b/v7.3.1/output/botcore.utils.caching.html
index 503a7e16..dab49ee4 100644
--- a/v7.3.1/output/botcore.utils.caching.html
+++ b/v7.3.1/output/botcore.utils.caching.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.1/output/botcore.utils.channel.html b/v7.3.1/output/botcore.utils.channel.html
index 55df863b..6201333b 100644
--- a/v7.3.1/output/botcore.utils.channel.html
+++ b/v7.3.1/output/botcore.utils.channel.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.1/output/botcore.utils.html b/v7.3.1/output/botcore.utils.html
index d082c662..9945249a 100644
--- a/v7.3.1/output/botcore.utils.html
+++ b/v7.3.1/output/botcore.utils.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.1/output/botcore.utils.interactions.html b/v7.3.1/output/botcore.utils.interactions.html
index 4a64924a..c5f1350d 100644
--- a/v7.3.1/output/botcore.utils.interactions.html
+++ b/v7.3.1/output/botcore.utils.interactions.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.1/output/botcore.utils.logging.html b/v7.3.1/output/botcore.utils.logging.html
index aa968d66..04c0bb1f 100644
--- a/v7.3.1/output/botcore.utils.logging.html
+++ b/v7.3.1/output/botcore.utils.logging.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.1/output/botcore.utils.members.html b/v7.3.1/output/botcore.utils.members.html
index 5097c63a..f9599b83 100644
--- a/v7.3.1/output/botcore.utils.members.html
+++ b/v7.3.1/output/botcore.utils.members.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.1/output/botcore.utils.regex.html b/v7.3.1/output/botcore.utils.regex.html
index fab5a909..b6e52b18 100644
--- a/v7.3.1/output/botcore.utils.regex.html
+++ b/v7.3.1/output/botcore.utils.regex.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.1/output/botcore.utils.scheduling.html b/v7.3.1/output/botcore.utils.scheduling.html
index 58f5dd56..df249a08 100644
--- a/v7.3.1/output/botcore.utils.scheduling.html
+++ b/v7.3.1/output/botcore.utils.scheduling.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.1/py-modindex.html b/v7.3.1/py-modindex.html
index 04b2d8d0..d3bbcfc7 100644
--- a/v7.3.1/py-modindex.html
+++ b/v7.3.1/py-modindex.html
@@ -203,6 +203,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.1/search.html b/v7.3.1/search.html
index 62daa16b..62243f86 100644
--- a/v7.3.1/search.html
+++ b/v7.3.1/search.html
@@ -202,6 +202,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.3.1/versions.html b/v7.3.1/versions.html
index ad2af577..55fdd9e8 100644
--- a/v7.3.1/versions.html
+++ b/v7.3.1/versions.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
@@ -323,6 +331,18 @@
- latest
+ -
+ v8.0.0-beta.4
+
+
+
+
+ -
+ v8.0.0-beta.3
+
+
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0-beta1/.buildinfo b/v7.4.0-beta1/.buildinfo
index 7f78013b..2317402a 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: 98975d157627359f5aff5e496d1d492f
+config: 7cd9898b4f5b6731c49090ca675869ff
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.4.0-beta1/.doctrees/changelog.doctree b/v7.4.0-beta1/.doctrees/changelog.doctree
index ae3b2c0a..d3af4339 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 0ed95c7e..893d1cf0 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 bca74784..bc951eb5 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 461b540e..7f1b86df 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 b37a2b6e..4b05752c 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 3007f82a..55e6ff25 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 b7853fd5..217eb538 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 a9da771e..fe8bc98a 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 d5dac964..83245900 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 12d4b58c..881b4c26 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 a0140367..feedae3b 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 4f0604d3..9a8d212f 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 4e05149d..5fe9dc32 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 aec0601f..f35acb8f 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 bb338fff..c69268a9 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-beta1/changelog.html b/v7.4.0-beta1/changelog.html
index 41aac2e6..51c1a68b 100644
--- a/v7.4.0-beta1/changelog.html
+++ b/v7.4.0-beta1/changelog.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0-beta1/genindex.html b/v7.4.0-beta1/genindex.html
index 532557af..2924d256 100644
--- a/v7.4.0-beta1/genindex.html
+++ b/v7.4.0-beta1/genindex.html
@@ -203,6 +203,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0-beta1/index.html b/v7.4.0-beta1/index.html
index 90974c5a..2c0da763 100644
--- a/v7.4.0-beta1/index.html
+++ b/v7.4.0-beta1/index.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0-beta1/output/botcore.async_stats.html b/v7.4.0-beta1/output/botcore.async_stats.html
index 3ba763db..9b79eb7f 100644
--- a/v7.4.0-beta1/output/botcore.async_stats.html
+++ b/v7.4.0-beta1/output/botcore.async_stats.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0-beta1/output/botcore.exts.html b/v7.4.0-beta1/output/botcore.exts.html
index 62e34985..6b4eed9e 100644
--- a/v7.4.0-beta1/output/botcore.exts.html
+++ b/v7.4.0-beta1/output/botcore.exts.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0-beta1/output/botcore.html b/v7.4.0-beta1/output/botcore.html
index e240a64b..49019a8a 100644
--- a/v7.4.0-beta1/output/botcore.html
+++ b/v7.4.0-beta1/output/botcore.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0-beta1/output/botcore.site_api.html b/v7.4.0-beta1/output/botcore.site_api.html
index a630ebfd..8e9ce699 100644
--- a/v7.4.0-beta1/output/botcore.site_api.html
+++ b/v7.4.0-beta1/output/botcore.site_api.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0-beta1/output/botcore.utils.caching.html b/v7.4.0-beta1/output/botcore.utils.caching.html
index 039b4688..8027c0b1 100644
--- a/v7.4.0-beta1/output/botcore.utils.caching.html
+++ b/v7.4.0-beta1/output/botcore.utils.caching.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0-beta1/output/botcore.utils.channel.html b/v7.4.0-beta1/output/botcore.utils.channel.html
index ec531593..6ac4663a 100644
--- a/v7.4.0-beta1/output/botcore.utils.channel.html
+++ b/v7.4.0-beta1/output/botcore.utils.channel.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0-beta1/output/botcore.utils.html b/v7.4.0-beta1/output/botcore.utils.html
index 474f43f3..17937211 100644
--- a/v7.4.0-beta1/output/botcore.utils.html
+++ b/v7.4.0-beta1/output/botcore.utils.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0-beta1/output/botcore.utils.interactions.html b/v7.4.0-beta1/output/botcore.utils.interactions.html
index eb7b7484..0ca03e27 100644
--- a/v7.4.0-beta1/output/botcore.utils.interactions.html
+++ b/v7.4.0-beta1/output/botcore.utils.interactions.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0-beta1/output/botcore.utils.logging.html b/v7.4.0-beta1/output/botcore.utils.logging.html
index 958c5655..57aa9610 100644
--- a/v7.4.0-beta1/output/botcore.utils.logging.html
+++ b/v7.4.0-beta1/output/botcore.utils.logging.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0-beta1/output/botcore.utils.members.html b/v7.4.0-beta1/output/botcore.utils.members.html
index a5a5ee48..c4ddfd32 100644
--- a/v7.4.0-beta1/output/botcore.utils.members.html
+++ b/v7.4.0-beta1/output/botcore.utils.members.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0-beta1/output/botcore.utils.regex.html b/v7.4.0-beta1/output/botcore.utils.regex.html
index 247c2be8..d6a1a6e1 100644
--- a/v7.4.0-beta1/output/botcore.utils.regex.html
+++ b/v7.4.0-beta1/output/botcore.utils.regex.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0-beta1/output/botcore.utils.scheduling.html b/v7.4.0-beta1/output/botcore.utils.scheduling.html
index 0200d691..beaf8d7f 100644
--- a/v7.4.0-beta1/output/botcore.utils.scheduling.html
+++ b/v7.4.0-beta1/output/botcore.utils.scheduling.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0-beta1/py-modindex.html b/v7.4.0-beta1/py-modindex.html
index 8cf7842b..5da95584 100644
--- a/v7.4.0-beta1/py-modindex.html
+++ b/v7.4.0-beta1/py-modindex.html
@@ -203,6 +203,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0-beta1/search.html b/v7.4.0-beta1/search.html
index c052537d..d42a42aa 100644
--- a/v7.4.0-beta1/search.html
+++ b/v7.4.0-beta1/search.html
@@ -202,6 +202,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0-beta1/versions.html b/v7.4.0-beta1/versions.html
index 3d0377a4..b71f21c9 100644
--- a/v7.4.0-beta1/versions.html
+++ b/v7.4.0-beta1/versions.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
@@ -323,6 +331,18 @@
- latest
+ -
+ v8.0.0-beta.4
+
+
+
+
+ -
+ v8.0.0-beta.3
+
+
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0/.buildinfo b/v7.4.0/.buildinfo
index 3547ad89..266ce0f3 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: 38d826526efff7d5c1802184506cf0f8
+config: a7985f60822593f6f6c70317a15f3465
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.4.0/.doctrees/changelog.doctree b/v7.4.0/.doctrees/changelog.doctree
index f1507caa..e7bce304 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 4b08a124..d12bdc9f 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 0cf2e38e..d4cf85c6 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 1fbe48ed..f1faa64a 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 584dd183..07ee4b99 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 0d77dcbd..2b862b2c 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 c289bfb1..0cc9d20d 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 4e73f41c..fdaa3577 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 07a49081..146aed82 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 0ec46ed6..ec4d969b 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 18ad14df..b9a086e8 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 49703067..e28f820b 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 1fe1bd38..195fce8f 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 e089e465..83ee8c7e 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 d1a4d272..47fa2239 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.4.0/changelog.html b/v7.4.0/changelog.html
index 4184136e..5cdc1aa6 100644
--- a/v7.4.0/changelog.html
+++ b/v7.4.0/changelog.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0/genindex.html b/v7.4.0/genindex.html
index fa7352e5..9b07bba1 100644
--- a/v7.4.0/genindex.html
+++ b/v7.4.0/genindex.html
@@ -203,6 +203,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0/index.html b/v7.4.0/index.html
index 13e9f9f4..2ffc6c3e 100644
--- a/v7.4.0/index.html
+++ b/v7.4.0/index.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0/output/botcore.async_stats.html b/v7.4.0/output/botcore.async_stats.html
index d3f08441..e5be8411 100644
--- a/v7.4.0/output/botcore.async_stats.html
+++ b/v7.4.0/output/botcore.async_stats.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0/output/botcore.exts.html b/v7.4.0/output/botcore.exts.html
index 5c7cd741..1238dcb1 100644
--- a/v7.4.0/output/botcore.exts.html
+++ b/v7.4.0/output/botcore.exts.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0/output/botcore.html b/v7.4.0/output/botcore.html
index 955da60d..8f39471f 100644
--- a/v7.4.0/output/botcore.html
+++ b/v7.4.0/output/botcore.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0/output/botcore.site_api.html b/v7.4.0/output/botcore.site_api.html
index b251911e..614727bf 100644
--- a/v7.4.0/output/botcore.site_api.html
+++ b/v7.4.0/output/botcore.site_api.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0/output/botcore.utils.caching.html b/v7.4.0/output/botcore.utils.caching.html
index 95947f37..08912fdf 100644
--- a/v7.4.0/output/botcore.utils.caching.html
+++ b/v7.4.0/output/botcore.utils.caching.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0/output/botcore.utils.channel.html b/v7.4.0/output/botcore.utils.channel.html
index 6c983f16..410f6792 100644
--- a/v7.4.0/output/botcore.utils.channel.html
+++ b/v7.4.0/output/botcore.utils.channel.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0/output/botcore.utils.html b/v7.4.0/output/botcore.utils.html
index 2a6b23f9..61d177aa 100644
--- a/v7.4.0/output/botcore.utils.html
+++ b/v7.4.0/output/botcore.utils.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0/output/botcore.utils.interactions.html b/v7.4.0/output/botcore.utils.interactions.html
index 3247dbd1..7ea8032f 100644
--- a/v7.4.0/output/botcore.utils.interactions.html
+++ b/v7.4.0/output/botcore.utils.interactions.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0/output/botcore.utils.logging.html b/v7.4.0/output/botcore.utils.logging.html
index 287c37ee..ccba1228 100644
--- a/v7.4.0/output/botcore.utils.logging.html
+++ b/v7.4.0/output/botcore.utils.logging.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0/output/botcore.utils.members.html b/v7.4.0/output/botcore.utils.members.html
index b19c40b3..7a5881dc 100644
--- a/v7.4.0/output/botcore.utils.members.html
+++ b/v7.4.0/output/botcore.utils.members.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0/output/botcore.utils.regex.html b/v7.4.0/output/botcore.utils.regex.html
index 7c1b8d7c..216a976d 100644
--- a/v7.4.0/output/botcore.utils.regex.html
+++ b/v7.4.0/output/botcore.utils.regex.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0/output/botcore.utils.scheduling.html b/v7.4.0/output/botcore.utils.scheduling.html
index 102cef6e..0409885c 100644
--- a/v7.4.0/output/botcore.utils.scheduling.html
+++ b/v7.4.0/output/botcore.utils.scheduling.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0/py-modindex.html b/v7.4.0/py-modindex.html
index 5c6b8bc7..51109a2a 100644
--- a/v7.4.0/py-modindex.html
+++ b/v7.4.0/py-modindex.html
@@ -203,6 +203,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0/search.html b/v7.4.0/search.html
index 56d09d2a..65e546b1 100644
--- a/v7.4.0/search.html
+++ b/v7.4.0/search.html
@@ -202,6 +202,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.4.0/versions.html b/v7.4.0/versions.html
index e9dc865a..0de564d6 100644
--- a/v7.4.0/versions.html
+++ b/v7.4.0/versions.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
@@ -323,6 +331,18 @@
- latest
+ -
+ v8.0.0-beta.4
+
+
+
+
+ -
+ v8.0.0-beta.3
+
+
+
+
-
v8.0.0-beta.2
diff --git a/v7.5.0/.buildinfo b/v7.5.0/.buildinfo
index f37bd63f..0008f720 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: 51a7070fd423dc6cdbb14ed173d80c69
+config: 6f239014777645fe77d4874d6f84d862
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v7.5.0/.doctrees/changelog.doctree b/v7.5.0/.doctrees/changelog.doctree
index 66b8f46b..fc101cfa 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 c33945c4..c0b6ef3e 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 fcd3fa18..c36c1959 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 ceae69b6..26f56ce5 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 af9ef95c..82411993 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 9db85a9a..67bdb6f1 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 059c3478..451496ea 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 4354ec83..78193481 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 096606aa..3824ed42 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 b676c4ef..8a37c95f 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 0ea5b971..8de782d5 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 1755fd96..8d9729ea 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 b6298e35..32f04347 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 7d293d52..09ad7e3c 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 4ccd7d96..024befe7 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 e169ebf2..1c4cd895 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
diff --git a/v7.5.0/changelog.html b/v7.5.0/changelog.html
index 139d6595..b9fb29bb 100644
--- a/v7.5.0/changelog.html
+++ b/v7.5.0/changelog.html
@@ -206,6 +206,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.5.0/genindex.html b/v7.5.0/genindex.html
index 13d074dc..fc31ef69 100644
--- a/v7.5.0/genindex.html
+++ b/v7.5.0/genindex.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.5.0/index.html b/v7.5.0/index.html
index 29249701..3abaad15 100644
--- a/v7.5.0/index.html
+++ b/v7.5.0/index.html
@@ -206,6 +206,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.5.0/output/botcore.async_stats.html b/v7.5.0/output/botcore.async_stats.html
index 755a4de1..b79bcd15 100644
--- a/v7.5.0/output/botcore.async_stats.html
+++ b/v7.5.0/output/botcore.async_stats.html
@@ -206,6 +206,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.5.0/output/botcore.exts.html b/v7.5.0/output/botcore.exts.html
index 70da3626..e4b69389 100644
--- a/v7.5.0/output/botcore.exts.html
+++ b/v7.5.0/output/botcore.exts.html
@@ -206,6 +206,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.5.0/output/botcore.html b/v7.5.0/output/botcore.html
index cf9774cc..f6e48d45 100644
--- a/v7.5.0/output/botcore.html
+++ b/v7.5.0/output/botcore.html
@@ -206,6 +206,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.5.0/output/botcore.site_api.html b/v7.5.0/output/botcore.site_api.html
index 9f4ebf0f..deb20718 100644
--- a/v7.5.0/output/botcore.site_api.html
+++ b/v7.5.0/output/botcore.site_api.html
@@ -206,6 +206,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.5.0/output/botcore.utils.caching.html b/v7.5.0/output/botcore.utils.caching.html
index 6343d029..4d2de2ca 100644
--- a/v7.5.0/output/botcore.utils.caching.html
+++ b/v7.5.0/output/botcore.utils.caching.html
@@ -206,6 +206,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.5.0/output/botcore.utils.channel.html b/v7.5.0/output/botcore.utils.channel.html
index 94ee7e73..ad2914d7 100644
--- a/v7.5.0/output/botcore.utils.channel.html
+++ b/v7.5.0/output/botcore.utils.channel.html
@@ -206,6 +206,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.5.0/output/botcore.utils.commands.html b/v7.5.0/output/botcore.utils.commands.html
index 39fe80b1..17aac1f6 100644
--- a/v7.5.0/output/botcore.utils.commands.html
+++ b/v7.5.0/output/botcore.utils.commands.html
@@ -206,6 +206,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.5.0/output/botcore.utils.html b/v7.5.0/output/botcore.utils.html
index 18137181..9949fde3 100644
--- a/v7.5.0/output/botcore.utils.html
+++ b/v7.5.0/output/botcore.utils.html
@@ -206,6 +206,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.5.0/output/botcore.utils.interactions.html b/v7.5.0/output/botcore.utils.interactions.html
index 2978a5ad..a6553054 100644
--- a/v7.5.0/output/botcore.utils.interactions.html
+++ b/v7.5.0/output/botcore.utils.interactions.html
@@ -206,6 +206,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.5.0/output/botcore.utils.logging.html b/v7.5.0/output/botcore.utils.logging.html
index ff822afc..2a69fa15 100644
--- a/v7.5.0/output/botcore.utils.logging.html
+++ b/v7.5.0/output/botcore.utils.logging.html
@@ -206,6 +206,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.5.0/output/botcore.utils.members.html b/v7.5.0/output/botcore.utils.members.html
index 87c3e800..c94484df 100644
--- a/v7.5.0/output/botcore.utils.members.html
+++ b/v7.5.0/output/botcore.utils.members.html
@@ -206,6 +206,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.5.0/output/botcore.utils.regex.html b/v7.5.0/output/botcore.utils.regex.html
index e482d7cd..bd740294 100644
--- a/v7.5.0/output/botcore.utils.regex.html
+++ b/v7.5.0/output/botcore.utils.regex.html
@@ -206,6 +206,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.5.0/output/botcore.utils.scheduling.html b/v7.5.0/output/botcore.utils.scheduling.html
index 4650754f..94f8a92e 100644
--- a/v7.5.0/output/botcore.utils.scheduling.html
+++ b/v7.5.0/output/botcore.utils.scheduling.html
@@ -206,6 +206,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.5.0/py-modindex.html b/v7.5.0/py-modindex.html
index b10d432d..f7fcebe7 100644
--- a/v7.5.0/py-modindex.html
+++ b/v7.5.0/py-modindex.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.5.0/search.html b/v7.5.0/search.html
index ba1d251b..0ed10766 100644
--- a/v7.5.0/search.html
+++ b/v7.5.0/search.html
@@ -203,6 +203,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v7.5.0/versions.html b/v7.5.0/versions.html
index e5336d5f..ffa7f6fd 100644
--- a/v7.5.0/versions.html
+++ b/v7.5.0/versions.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
@@ -324,6 +332,18 @@
- latest
+ -
+ v8.0.0-beta.4
+
+
+
+
+ -
+ v8.0.0-beta.3
+
+
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.1/.buildinfo b/v8.0.0-beta.1/.buildinfo
index 752e5cf6..aaa82d25 100644
--- a/v8.0.0-beta.1/.buildinfo
+++ b/v8.0.0-beta.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: 5e9b71bf480daac6941846cf3ebf3748
+config: 3e003233a12f5252e9a062084fcac05f
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v8.0.0-beta.1/.doctrees/changelog.doctree b/v8.0.0-beta.1/.doctrees/changelog.doctree
index 6669d815..f108fba4 100644
Binary files a/v8.0.0-beta.1/.doctrees/changelog.doctree and b/v8.0.0-beta.1/.doctrees/changelog.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/development.doctree b/v8.0.0-beta.1/.doctrees/development.doctree
index 059fa6ca..7aaca66d 100644
Binary files a/v8.0.0-beta.1/.doctrees/development.doctree and b/v8.0.0-beta.1/.doctrees/development.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/environment.pickle b/v8.0.0-beta.1/.doctrees/environment.pickle
index b1d4c7cb..6da78821 100644
Binary files a/v8.0.0-beta.1/.doctrees/environment.pickle and b/v8.0.0-beta.1/.doctrees/environment.pickle differ
diff --git a/v8.0.0-beta.1/.doctrees/index.doctree b/v8.0.0-beta.1/.doctrees/index.doctree
index 41215f00..60b6c44c 100644
Binary files a/v8.0.0-beta.1/.doctrees/index.doctree and b/v8.0.0-beta.1/.doctrees/index.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.async_stats.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.async_stats.doctree
index be27b36f..b068a4f3 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.async_stats.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.doctree
index 825e1e65..91c20a09 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.exts.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.exts.doctree
index 23fb2aa8..ac6664f2 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.exts.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.exts.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.site_api.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.site_api.doctree
index 6ce4ba45..b321b425 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.site_api.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.utils.caching.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.utils.caching.doctree
index 942dd323..12a6afef 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.utils.caching.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.utils.channel.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.utils.channel.doctree
index f98efa0f..ac15855e 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.utils.channel.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.utils.commands.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.utils.commands.doctree
index 1a991723..92c9a5e7 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.utils.commands.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.utils.commands.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.utils.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.utils.doctree
index 4f38a65c..370b6196 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.utils.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.utils.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.utils.interactions.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.utils.interactions.doctree
index 1a02ba76..885b2f2f 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.utils.interactions.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.utils.interactions.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.utils.logging.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.utils.logging.doctree
index 1a902b41..aff7a077 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.utils.logging.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.utils.members.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.utils.members.doctree
index 791d97c2..6b9cd65e 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.utils.members.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.utils.regex.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.utils.regex.doctree
index 227f3b21..8bc3cc1c 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.utils.regex.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v8.0.0-beta.1/.doctrees/output/botcore.utils.scheduling.doctree b/v8.0.0-beta.1/.doctrees/output/botcore.utils.scheduling.doctree
index 91e67f03..ab745027 100644
Binary files a/v8.0.0-beta.1/.doctrees/output/botcore.utils.scheduling.doctree and b/v8.0.0-beta.1/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v8.0.0-beta.1/changelog.html b/v8.0.0-beta.1/changelog.html
index dcf22092..8496159f 100644
--- a/v8.0.0-beta.1/changelog.html
+++ b/v8.0.0-beta.1/changelog.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.1/development.html b/v8.0.0-beta.1/development.html
index 31d8fdfb..c5c26815 100644
--- a/v8.0.0-beta.1/development.html
+++ b/v8.0.0-beta.1/development.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.1/genindex.html b/v8.0.0-beta.1/genindex.html
index 1a21512f..9a1fd566 100644
--- a/v8.0.0-beta.1/genindex.html
+++ b/v8.0.0-beta.1/genindex.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.1/index.html b/v8.0.0-beta.1/index.html
index e58753b5..de784d4c 100644
--- a/v8.0.0-beta.1/index.html
+++ b/v8.0.0-beta.1/index.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.1/output/botcore.async_stats.html b/v8.0.0-beta.1/output/botcore.async_stats.html
index 7c625e25..288f3711 100644
--- a/v8.0.0-beta.1/output/botcore.async_stats.html
+++ b/v8.0.0-beta.1/output/botcore.async_stats.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.1/output/botcore.exts.html b/v8.0.0-beta.1/output/botcore.exts.html
index 08d40228..be384b25 100644
--- a/v8.0.0-beta.1/output/botcore.exts.html
+++ b/v8.0.0-beta.1/output/botcore.exts.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.1/output/botcore.html b/v8.0.0-beta.1/output/botcore.html
index c93270fe..45bfd03a 100644
--- a/v8.0.0-beta.1/output/botcore.html
+++ b/v8.0.0-beta.1/output/botcore.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.1/output/botcore.site_api.html b/v8.0.0-beta.1/output/botcore.site_api.html
index 03f210d3..09c5cfde 100644
--- a/v8.0.0-beta.1/output/botcore.site_api.html
+++ b/v8.0.0-beta.1/output/botcore.site_api.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.1/output/botcore.utils.caching.html b/v8.0.0-beta.1/output/botcore.utils.caching.html
index 0da62ce7..f1c41f82 100644
--- a/v8.0.0-beta.1/output/botcore.utils.caching.html
+++ b/v8.0.0-beta.1/output/botcore.utils.caching.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.1/output/botcore.utils.channel.html b/v8.0.0-beta.1/output/botcore.utils.channel.html
index 90cddbfd..a756965f 100644
--- a/v8.0.0-beta.1/output/botcore.utils.channel.html
+++ b/v8.0.0-beta.1/output/botcore.utils.channel.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.1/output/botcore.utils.commands.html b/v8.0.0-beta.1/output/botcore.utils.commands.html
index 41bee96f..1b6372bd 100644
--- a/v8.0.0-beta.1/output/botcore.utils.commands.html
+++ b/v8.0.0-beta.1/output/botcore.utils.commands.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.1/output/botcore.utils.html b/v8.0.0-beta.1/output/botcore.utils.html
index 12bbd9a5..d5a574df 100644
--- a/v8.0.0-beta.1/output/botcore.utils.html
+++ b/v8.0.0-beta.1/output/botcore.utils.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.1/output/botcore.utils.interactions.html b/v8.0.0-beta.1/output/botcore.utils.interactions.html
index 4f43a9ad..20f65666 100644
--- a/v8.0.0-beta.1/output/botcore.utils.interactions.html
+++ b/v8.0.0-beta.1/output/botcore.utils.interactions.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.1/output/botcore.utils.logging.html b/v8.0.0-beta.1/output/botcore.utils.logging.html
index 42e576c7..8b035314 100644
--- a/v8.0.0-beta.1/output/botcore.utils.logging.html
+++ b/v8.0.0-beta.1/output/botcore.utils.logging.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.1/output/botcore.utils.members.html b/v8.0.0-beta.1/output/botcore.utils.members.html
index 928ff882..718c0a41 100644
--- a/v8.0.0-beta.1/output/botcore.utils.members.html
+++ b/v8.0.0-beta.1/output/botcore.utils.members.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.1/output/botcore.utils.regex.html b/v8.0.0-beta.1/output/botcore.utils.regex.html
index f5b8cb45..38661501 100644
--- a/v8.0.0-beta.1/output/botcore.utils.regex.html
+++ b/v8.0.0-beta.1/output/botcore.utils.regex.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.1/output/botcore.utils.scheduling.html b/v8.0.0-beta.1/output/botcore.utils.scheduling.html
index 7a974fa7..0ae80abe 100644
--- a/v8.0.0-beta.1/output/botcore.utils.scheduling.html
+++ b/v8.0.0-beta.1/output/botcore.utils.scheduling.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.1/py-modindex.html b/v8.0.0-beta.1/py-modindex.html
index 4becc1cd..4272cc22 100644
--- a/v8.0.0-beta.1/py-modindex.html
+++ b/v8.0.0-beta.1/py-modindex.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.1/search.html b/v8.0.0-beta.1/search.html
index 5c7226fd..b3ce7925 100644
--- a/v8.0.0-beta.1/search.html
+++ b/v8.0.0-beta.1/search.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.1/versions.html b/v8.0.0-beta.1/versions.html
index 9ccaf373..506dd73f 100644
--- a/v8.0.0-beta.1/versions.html
+++ b/v8.0.0-beta.1/versions.html
@@ -206,6 +206,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
@@ -325,6 +333,18 @@
- latest
+ -
+ v8.0.0-beta.4
+
+
+
+
+ -
+ v8.0.0-beta.3
+
+
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.2/.buildinfo b/v8.0.0-beta.2/.buildinfo
index 4e36eca9..6f9a14bd 100644
--- a/v8.0.0-beta.2/.buildinfo
+++ b/v8.0.0-beta.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: 2a2282fa49eb854cfc82874449d8afdc
+config: 75ffe99b3989f1adac706fce49dc1e54
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v8.0.0-beta.2/.doctrees/changelog.doctree b/v8.0.0-beta.2/.doctrees/changelog.doctree
index 937b9079..e895f330 100644
Binary files a/v8.0.0-beta.2/.doctrees/changelog.doctree and b/v8.0.0-beta.2/.doctrees/changelog.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/development.doctree b/v8.0.0-beta.2/.doctrees/development.doctree
index 028b572b..65766a7f 100644
Binary files a/v8.0.0-beta.2/.doctrees/development.doctree and b/v8.0.0-beta.2/.doctrees/development.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/environment.pickle b/v8.0.0-beta.2/.doctrees/environment.pickle
index e6b4769e..69fdefba 100644
Binary files a/v8.0.0-beta.2/.doctrees/environment.pickle and b/v8.0.0-beta.2/.doctrees/environment.pickle differ
diff --git a/v8.0.0-beta.2/.doctrees/index.doctree b/v8.0.0-beta.2/.doctrees/index.doctree
index a0e4df06..c8d9964e 100644
Binary files a/v8.0.0-beta.2/.doctrees/index.doctree and b/v8.0.0-beta.2/.doctrees/index.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.async_stats.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.async_stats.doctree
index cb7b394c..79349cdb 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.async_stats.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.doctree
index 5ca1d3fd..f85c08fb 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.exts.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.exts.doctree
index 848dce1f..a21c6132 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.exts.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.exts.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.site_api.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.site_api.doctree
index 22aa35ed..9072f676 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.site_api.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.utils.caching.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.utils.caching.doctree
index 5134055d..238573e3 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.utils.caching.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.utils.channel.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.utils.channel.doctree
index f1ede13e..6de7be0b 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.utils.channel.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.utils.commands.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.utils.commands.doctree
index 6afa5d64..bf1e9c22 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.utils.commands.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.utils.commands.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.utils.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.utils.doctree
index 2a0b281a..58abbc18 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.utils.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.utils.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.utils.interactions.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.utils.interactions.doctree
index b1df4afc..343aa930 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.utils.interactions.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.utils.interactions.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.utils.logging.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.utils.logging.doctree
index a9aeef6f..6d9e583c 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.utils.logging.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.utils.members.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.utils.members.doctree
index a91eb2ca..6acd4cf7 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.utils.members.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.utils.regex.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.utils.regex.doctree
index 2f2dfd34..be4a913d 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.utils.regex.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v8.0.0-beta.2/.doctrees/output/botcore.utils.scheduling.doctree b/v8.0.0-beta.2/.doctrees/output/botcore.utils.scheduling.doctree
index 2a9b920c..eb9d368c 100644
Binary files a/v8.0.0-beta.2/.doctrees/output/botcore.utils.scheduling.doctree and b/v8.0.0-beta.2/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v8.0.0-beta.2/changelog.html b/v8.0.0-beta.2/changelog.html
index 1e7eb54b..ca617063 100644
--- a/v8.0.0-beta.2/changelog.html
+++ b/v8.0.0-beta.2/changelog.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.2/development.html b/v8.0.0-beta.2/development.html
index cae3c5e2..4cdc8a05 100644
--- a/v8.0.0-beta.2/development.html
+++ b/v8.0.0-beta.2/development.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.2/genindex.html b/v8.0.0-beta.2/genindex.html
index 7cc8ccc6..b5213e94 100644
--- a/v8.0.0-beta.2/genindex.html
+++ b/v8.0.0-beta.2/genindex.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.2/index.html b/v8.0.0-beta.2/index.html
index 19ad816e..a23bd508 100644
--- a/v8.0.0-beta.2/index.html
+++ b/v8.0.0-beta.2/index.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.2/output/botcore.async_stats.html b/v8.0.0-beta.2/output/botcore.async_stats.html
index 58bec14f..ced4ebb4 100644
--- a/v8.0.0-beta.2/output/botcore.async_stats.html
+++ b/v8.0.0-beta.2/output/botcore.async_stats.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.2/output/botcore.exts.html b/v8.0.0-beta.2/output/botcore.exts.html
index 2180516d..a713180e 100644
--- a/v8.0.0-beta.2/output/botcore.exts.html
+++ b/v8.0.0-beta.2/output/botcore.exts.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.2/output/botcore.html b/v8.0.0-beta.2/output/botcore.html
index 7de785f6..f73beb52 100644
--- a/v8.0.0-beta.2/output/botcore.html
+++ b/v8.0.0-beta.2/output/botcore.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.2/output/botcore.site_api.html b/v8.0.0-beta.2/output/botcore.site_api.html
index e672ad9c..b9c281c9 100644
--- a/v8.0.0-beta.2/output/botcore.site_api.html
+++ b/v8.0.0-beta.2/output/botcore.site_api.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.2/output/botcore.utils.caching.html b/v8.0.0-beta.2/output/botcore.utils.caching.html
index b00d3660..594fcf66 100644
--- a/v8.0.0-beta.2/output/botcore.utils.caching.html
+++ b/v8.0.0-beta.2/output/botcore.utils.caching.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.2/output/botcore.utils.channel.html b/v8.0.0-beta.2/output/botcore.utils.channel.html
index d2bc5eb0..c80a5839 100644
--- a/v8.0.0-beta.2/output/botcore.utils.channel.html
+++ b/v8.0.0-beta.2/output/botcore.utils.channel.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.2/output/botcore.utils.commands.html b/v8.0.0-beta.2/output/botcore.utils.commands.html
index 451d7538..dd944519 100644
--- a/v8.0.0-beta.2/output/botcore.utils.commands.html
+++ b/v8.0.0-beta.2/output/botcore.utils.commands.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.2/output/botcore.utils.html b/v8.0.0-beta.2/output/botcore.utils.html
index 04a97ac4..4e0f607d 100644
--- a/v8.0.0-beta.2/output/botcore.utils.html
+++ b/v8.0.0-beta.2/output/botcore.utils.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.2/output/botcore.utils.interactions.html b/v8.0.0-beta.2/output/botcore.utils.interactions.html
index 7b74443a..bd70365c 100644
--- a/v8.0.0-beta.2/output/botcore.utils.interactions.html
+++ b/v8.0.0-beta.2/output/botcore.utils.interactions.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.2/output/botcore.utils.logging.html b/v8.0.0-beta.2/output/botcore.utils.logging.html
index c7e68c4e..6fbbd90c 100644
--- a/v8.0.0-beta.2/output/botcore.utils.logging.html
+++ b/v8.0.0-beta.2/output/botcore.utils.logging.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.2/output/botcore.utils.members.html b/v8.0.0-beta.2/output/botcore.utils.members.html
index e12877e6..cc27104d 100644
--- a/v8.0.0-beta.2/output/botcore.utils.members.html
+++ b/v8.0.0-beta.2/output/botcore.utils.members.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.2/output/botcore.utils.regex.html b/v8.0.0-beta.2/output/botcore.utils.regex.html
index eda1f89d..546958a9 100644
--- a/v8.0.0-beta.2/output/botcore.utils.regex.html
+++ b/v8.0.0-beta.2/output/botcore.utils.regex.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.2/output/botcore.utils.scheduling.html b/v8.0.0-beta.2/output/botcore.utils.scheduling.html
index 0854c55d..98b51b0d 100644
--- a/v8.0.0-beta.2/output/botcore.utils.scheduling.html
+++ b/v8.0.0-beta.2/output/botcore.utils.scheduling.html
@@ -207,6 +207,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.2/py-modindex.html b/v8.0.0-beta.2/py-modindex.html
index 905806eb..047b6243 100644
--- a/v8.0.0-beta.2/py-modindex.html
+++ b/v8.0.0-beta.2/py-modindex.html
@@ -205,6 +205,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.2/search.html b/v8.0.0-beta.2/search.html
index 38980efa..aebb3bc7 100644
--- a/v8.0.0-beta.2/search.html
+++ b/v8.0.0-beta.2/search.html
@@ -204,6 +204,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
diff --git a/v8.0.0-beta.2/versions.html b/v8.0.0-beta.2/versions.html
index 3a510b1a..73effa0f 100644
--- a/v8.0.0-beta.2/versions.html
+++ b/v8.0.0-beta.2/versions.html
@@ -206,6 +206,14 @@
main
+ -
+ v8.0.0-beta.4
+
+
+ -
+ v8.0.0-beta.3
+
+
-
v8.0.0-beta.2
@@ -325,6 +333,18 @@
- latest
+ -
+ v8.0.0-beta.4
+
+
+
+
+ -
+ v8.0.0-beta.3
+
+
+
+
-
v8.0.0-beta.2
(current)
diff --git a/v8.0.0-beta.3/.buildinfo b/v8.0.0-beta.3/.buildinfo
new file mode 100644
index 00000000..40467c5c
--- /dev/null
+++ b/v8.0.0-beta.3/.buildinfo
@@ -0,0 +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: 8d183800f006d80476eeba70096e017b
+tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/v8.0.0-beta.3/.doctrees/changelog.doctree b/v8.0.0-beta.3/.doctrees/changelog.doctree
new file mode 100644
index 00000000..6141088d
Binary files /dev/null and b/v8.0.0-beta.3/.doctrees/changelog.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/development.doctree b/v8.0.0-beta.3/.doctrees/development.doctree
new file mode 100644
index 00000000..2e91c2ca
Binary files /dev/null and b/v8.0.0-beta.3/.doctrees/development.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/environment.pickle b/v8.0.0-beta.3/.doctrees/environment.pickle
new file mode 100644
index 00000000..f7978242
Binary files /dev/null and b/v8.0.0-beta.3/.doctrees/environment.pickle differ
diff --git a/v8.0.0-beta.3/.doctrees/index.doctree b/v8.0.0-beta.3/.doctrees/index.doctree
new file mode 100644
index 00000000..f2cfbeba
Binary files /dev/null and b/v8.0.0-beta.3/.doctrees/index.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.async_stats.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.async_stats.doctree
new file mode 100644
index 00000000..92cc8e3d
Binary files /dev/null and b/v8.0.0-beta.3/.doctrees/output/botcore.async_stats.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.doctree
new file mode 100644
index 00000000..76f056cf
Binary files /dev/null and b/v8.0.0-beta.3/.doctrees/output/botcore.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.exts.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.exts.doctree
new file mode 100644
index 00000000..69bc0bdf
Binary files /dev/null and b/v8.0.0-beta.3/.doctrees/output/botcore.exts.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.site_api.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.site_api.doctree
new file mode 100644
index 00000000..4f533c87
Binary files /dev/null and b/v8.0.0-beta.3/.doctrees/output/botcore.site_api.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.utils.caching.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.utils.caching.doctree
new file mode 100644
index 00000000..f4a747d2
Binary files /dev/null and b/v8.0.0-beta.3/.doctrees/output/botcore.utils.caching.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.utils.channel.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.utils.channel.doctree
new file mode 100644
index 00000000..a5146ff7
Binary files /dev/null and b/v8.0.0-beta.3/.doctrees/output/botcore.utils.channel.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.utils.commands.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.utils.commands.doctree
new file mode 100644
index 00000000..bfde9bc5
Binary files /dev/null and b/v8.0.0-beta.3/.doctrees/output/botcore.utils.commands.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.utils.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.utils.doctree
new file mode 100644
index 00000000..4c1d4b0b
Binary files /dev/null and b/v8.0.0-beta.3/.doctrees/output/botcore.utils.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.utils.interactions.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.utils.interactions.doctree
new file mode 100644
index 00000000..86b71cdd
Binary files /dev/null and b/v8.0.0-beta.3/.doctrees/output/botcore.utils.interactions.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.utils.logging.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.utils.logging.doctree
new file mode 100644
index 00000000..d7f947f9
Binary files /dev/null and b/v8.0.0-beta.3/.doctrees/output/botcore.utils.logging.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.utils.members.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.utils.members.doctree
new file mode 100644
index 00000000..dd4afdae
Binary files /dev/null and b/v8.0.0-beta.3/.doctrees/output/botcore.utils.members.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.utils.regex.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.utils.regex.doctree
new file mode 100644
index 00000000..5d1eb691
Binary files /dev/null and b/v8.0.0-beta.3/.doctrees/output/botcore.utils.regex.doctree differ
diff --git a/v8.0.0-beta.3/.doctrees/output/botcore.utils.scheduling.doctree b/v8.0.0-beta.3/.doctrees/output/botcore.utils.scheduling.doctree
new file mode 100644
index 00000000..b017cab7
Binary files /dev/null and b/v8.0.0-beta.3/.doctrees/output/botcore.utils.scheduling.doctree differ
diff --git a/v8.0.0-beta.3/.nojekyll b/v8.0.0-beta.3/.nojekyll
new file mode 100644
index 00000000..e69de29b
diff --git a/v8.0.0-beta.3/_sources/changelog.rst.txt b/v8.0.0-beta.3/_sources/changelog.rst.txt
new file mode 100644
index 00000000..7beabbe2
--- /dev/null
+++ b/v8.0.0-beta.3/_sources/changelog.rst.txt
@@ -0,0 +1,166 @@
+.. See docs for details on formatting your entries
+ https://releases.readthedocs.io/en/latest/concepts.html
+
+Changelog
+=========
+
+- :breaking:`110` Bump async-rediscache to v1.0.0-rc2
+- :support:`108` Bump Python version to 3.10.*
+- :bug:`107` Declare aiodns as a project dependency.
+- :support:`107` Add a sample project with boilerplate and documentation explaining how to develop for bot-core.
+
+
+- :release:`7.5.0 <23rd July 2022>`
+- :feature:`101` Add a utility to clean a string or referenced message's content
+
+
+- :release:`7.4.0 <17th July 2022>`
+- :feature:`106` Add an optional ``message`` attr to :obj:`botcore.utils.interactions.ViewWithUserAndRoleCheck`. On view timeout, this message has its view removed if set.
+
+
+- :release:`7.3.1 <16th July 2022>`
+- :bug:`104` Fix :obj:`botcore.utils.interactions.DeleteMessageButton` not working due to using wrong delete method.
+
+
+- :release:`7.3.0 <16th July 2022>`
+- :feature:`103` Add a generic view :obj:`botcore.utils.interactions.ViewWithUserAndRoleCheck` that only allows specified users and roles to interaction with it
+- :feature:`103` Add a button :obj:`botcore.utils.interactions.DeleteMessageButton` that deletes the message attached to its parent view.
+
+
+- :release:`7.2.2 <9th July 2022>`
+- :bug:`98` Only close ``BotBase.stats._transport`` if ``BotBase.stats`` was created
+
+
+- :release:`7.2.1 <30th June 2022>`
+- :bug:`96` Fix attempts to connect to ``BotBase.statsd_url`` when it is None.
+- :bug:`91` Fix incorrect docstring for ``botcore.utils.member.handle_role_change``.
+- :bug:`91` Pass missing self parameter to ``BotBase.ping_services``.
+- :bug:`91` Add missing await to ``BotBase.ping_services`` in some cases.
+
+
+- :release:`7.2.0 <28th June 2022>`
+- :support:`93` Bump Discord.py to :literal-url:`0eb3d26
`:
+
+ - Adds support for auto mod, of which the new auto_mod MESSAGE_TYPE is needed for our filter system.
+
+
+- :release:`7.1.3 <30th May 2022>` 79
+- :support:`79` Add `sphinx-multiversion `_ to make available older doc versions.
+- :support:`79` Restore on-site changelog.
+
+
+- :release:`7.1.0 <24th May 2022>`
+- :feature:`78` Bump Discord.py to :literal-url:`4cbe8f5 `:
+
+ - This fixes a bug with permission resolution when dealing with timed out members.
+
+
+- :release:`7.0.0 <10th May 2022>`
+- :bug:`75 major` Capture all characters up to a whitespace in the Discord Invite regex.
+- :breaking:`75` Discord invite regex no longer returns a URL safe result, refer to documentation for safely handling it.
+
+
+- :release:`6.4.0 <26th April 2022>`
+- :feature:`72` Bump discord.py to :literal-url:`5a06fa5 `:
+
+ - Notably, one of the commits in this bump dynamically extends the timeout of ``Guild.chunk()`` based on the number or members, so it should actually work on our guild now.
+
+
+- :release:`6.3.2 <25th April 2022>`
+- :bug:`69` Actually use ``statsd_url`` when it gets passed to ``BotBase``.
+
+
+- :release:`6.3.1 <21st April 2022>`
+- :bug:`68` Correct version number in pyproject.toml
+
+
+- :release:`6.3.0 <21st April 2022>`
+- :feature:`-` (Committed directly to main) Don't load modules starting with ``_``
+
+
+- :release:`6.2.0 <21st April 2022>`
+- :feature:`66` Load each cog in it's own task to avoid a single cog crashing entire load process.
+
+
+- :release:`6.1.0 <20th April 2022>`
+- :feature:`65` Add ``unqualify`` to the ``botcore.utils`` namespace for use in bots that manipulate extensions.
+
+
+- :release:`6.0.0 <19th April 2022>`
+- :breaking:`64` Bump discord.py to :literal-url:`987235d `:
+
+ - This reverts a change to help command behaviour that broke our custom pagination
+ - This also adds basic forum channel support to discord.py
+
+
+- :release:`5.0.4 <18th April 2022>` 63
+
+ ..
+ Feature 63 Needs to be explicitly included above because it was improperly released within a bugfix version
+ instead of a minor release
+
+- :feature:`63` Allow passing an ``api_client`` to ``BotBase.__init__`` to specify the ``botcore.site_api.APIClient`` instance to use.
+
+
+- :release:`5.0.3 <18th April 2022>`
+- :bug:`61` Reconnect to redis session on setup if it is closed.
+
+
+- :release:`5.0.2 <5th April 2022>`
+- :bug:`56` Create a dummy ``AsyncstatsdClient`` before connecting to real url, in case a connection cannot be made on init.
+- :bug:`56` Move the creation of the ``asyncio.Event``, ``BotBase._guild_available`` to within the setup hook, to avoid a deprecation notice.
+
+
+- :release:`5.0.1 <2nd April 2022>`
+- :bug:`54` Move creation of BotBase's ``aiohttp.AsyncResolver`` to the async setup hook, to avoid deprecation notice
+
+
+- :release:`5.0.0 <2nd April 2022>`
+- :breaking:`42` Remove public extensions util.
+- :feature:`42` Add ``BotBase``, a ``discord.ext.commands.Bot`` sub-class, which abstracts a lot of logic shared between our bots.
+- :feature:`42` Add async statsd client.
+- :support:`42` Bump Discord.py to latest alpha commit.
+
+
+- :release:`4.0.0 <14th March 2022>`
+- :breaking:`39` Migrate back to Discord.py 2.0.
+
+
+- :release:`3.0.1 <5th March 2022>`
+- :bug:`37` Setup log tracing when ``botcore.utils.logging`` is imported so that it can be used within botcore functions.
+
+
+- :release:`3.0.0 <3rd March 2022>`
+- :breaking:`35` Move ``apply_monkey_patches()`` directly to `botcore.utils` namespace.
+
+
+- :release:`2.1.0 <24th February 2022>`
+- :feature:`34` Port the Site API wrapper from the bot repo.
+
+
+- :release:`2.0.0 <22nd February 2022>`
+- :breaking:`35` Moved regex to ``botcore.utils`` namespace
+- :breaking:`32` Migrate from discord.py 2.0a0 to disnake.
+- :feature:`32` Add common monkey patches.
+- :feature:`29` Port many common utilities from our bots:
+
+ - caching
+ - channel
+ - extensions
+ - loggers
+ - members
+ - scheduling
+- :support:`2` Added intersphinx to docs.
+
+
+- :release:`1.2.0 <9th January 2022>`
+- :feature:`12` Code block detection regex.
+
+
+- :release:`1.1.0 <2nd December 2021>`
+- :support:`2` Autogenerated docs.
+- :feature:`2` Regex utility.
+
+
+- :release:`1.0.0 <17th November 2021>`
+- :feature:`1` Core package, poetry, and linting CI.
diff --git a/v8.0.0-beta.3/_sources/development.rst.txt b/v8.0.0-beta.3/_sources/development.rst.txt
new file mode 100644
index 00000000..25b8e0a7
--- /dev/null
+++ b/v8.0.0-beta.3/_sources/development.rst.txt
@@ -0,0 +1,2 @@
+.. Stub file to expose the README to sphinx
+.. include:: ../dev/README.rst
diff --git a/v8.0.0-beta.3/_sources/index.rst.txt b/v8.0.0-beta.3/_sources/index.rst.txt
new file mode 100644
index 00000000..aee7b269
--- /dev/null
+++ b/v8.0.0-beta.3/_sources/index.rst.txt
@@ -0,0 +1,31 @@
+.. Generated by sphinx-quickstart on Thu Dec 2 01:21:15 2021.
+
+Bot Core Project Documentation
+==============================
+
+
+Reference
+====================================
+
+.. toctree::
+ :maxdepth: 4
+ :caption: Modules:
+
+ output/botcore
+
+.. toctree::
+ :caption: Other:
+ :hidden:
+
+ development
+ changelog
+
+
+Extras
+==================
+
+* :ref:`genindex`
+* :ref:`search`
+* :repo-file:`Information `
+* :doc:`development`
+* :doc:`changelog`
diff --git a/v8.0.0-beta.3/_sources/output/botcore.async_stats.rst.txt b/v8.0.0-beta.3/_sources/output/botcore.async_stats.rst.txt
new file mode 100644
index 00000000..7fdbbbe2
--- /dev/null
+++ b/v8.0.0-beta.3/_sources/output/botcore.async_stats.rst.txt
@@ -0,0 +1,7 @@
+async\_stats
+===========================
+
+.. automodule:: botcore.async_stats
+ :members:
+ :special-members:
+ :show-inheritance:
diff --git a/v8.0.0-beta.3/_sources/output/botcore.exts.rst.txt b/v8.0.0-beta.3/_sources/output/botcore.exts.rst.txt
new file mode 100644
index 00000000..38d2fc2e
--- /dev/null
+++ b/v8.0.0-beta.3/_sources/output/botcore.exts.rst.txt
@@ -0,0 +1,7 @@
+Exts
+====
+
+.. automodule:: botcore.exts
+ :members:
+ :special-members:
+ :show-inheritance:
diff --git a/v8.0.0-beta.3/_sources/output/botcore.rst.txt b/v8.0.0-beta.3/_sources/output/botcore.rst.txt
new file mode 100644
index 00000000..0a719da2
--- /dev/null
+++ b/v8.0.0-beta.3/_sources/output/botcore.rst.txt
@@ -0,0 +1,25 @@
+Botcore
+=======
+
+.. automodule:: botcore
+ :members:
+ :special-members:
+ :show-inheritance:
+
+Subpackages
+-----------
+
+.. toctree::
+ :maxdepth: 4
+
+ botcore.exts
+ botcore.utils
+
+Submodules
+----------
+
+.. toctree::
+ :maxdepth: 4
+
+ botcore.async_stats
+ botcore.site_api
diff --git a/v8.0.0-beta.3/_sources/output/botcore.site_api.rst.txt b/v8.0.0-beta.3/_sources/output/botcore.site_api.rst.txt
new file mode 100644
index 00000000..2399bbc4
--- /dev/null
+++ b/v8.0.0-beta.3/_sources/output/botcore.site_api.rst.txt
@@ -0,0 +1,7 @@
+site\_api
+========================
+
+.. automodule:: botcore.site_api
+ :members:
+ :special-members:
+ :show-inheritance:
diff --git a/v8.0.0-beta.3/_sources/output/botcore.utils.caching.rst.txt b/v8.0.0-beta.3/_sources/output/botcore.utils.caching.rst.txt
new file mode 100644
index 00000000..02c2105d
--- /dev/null
+++ b/v8.0.0-beta.3/_sources/output/botcore.utils.caching.rst.txt
@@ -0,0 +1,7 @@
+caching
+============================
+
+.. automodule:: botcore.utils.caching
+ :members:
+ :special-members:
+ :show-inheritance:
diff --git a/v8.0.0-beta.3/_sources/output/botcore.utils.channel.rst.txt b/v8.0.0-beta.3/_sources/output/botcore.utils.channel.rst.txt
new file mode 100644
index 00000000..460975f4
--- /dev/null
+++ b/v8.0.0-beta.3/_sources/output/botcore.utils.channel.rst.txt
@@ -0,0 +1,7 @@
+channel
+============================
+
+.. automodule:: botcore.utils.channel
+ :members:
+ :special-members:
+ :show-inheritance:
diff --git a/v8.0.0-beta.3/_sources/output/botcore.utils.commands.rst.txt b/v8.0.0-beta.3/_sources/output/botcore.utils.commands.rst.txt
new file mode 100644
index 00000000..00ef02f6
--- /dev/null
+++ b/v8.0.0-beta.3/_sources/output/botcore.utils.commands.rst.txt
@@ -0,0 +1,7 @@
+commands
+=============================
+
+.. automodule:: botcore.utils.commands
+ :members:
+ :special-members:
+ :show-inheritance:
diff --git a/v8.0.0-beta.3/_sources/output/botcore.utils.interactions.rst.txt b/v8.0.0-beta.3/_sources/output/botcore.utils.interactions.rst.txt
new file mode 100644
index 00000000..bb8be82c
--- /dev/null
+++ b/v8.0.0-beta.3/_sources/output/botcore.utils.interactions.rst.txt
@@ -0,0 +1,7 @@
+interactions
+=================================
+
+.. automodule:: botcore.utils.interactions
+ :members:
+ :special-members:
+ :show-inheritance:
diff --git a/v8.0.0-beta.3/_sources/output/botcore.utils.logging.rst.txt b/v8.0.0-beta.3/_sources/output/botcore.utils.logging.rst.txt
new file mode 100644
index 00000000..a719bfa7
--- /dev/null
+++ b/v8.0.0-beta.3/_sources/output/botcore.utils.logging.rst.txt
@@ -0,0 +1,7 @@
+logging
+============================
+
+.. automodule:: botcore.utils.logging
+ :members:
+ :special-members:
+ :show-inheritance:
diff --git a/v8.0.0-beta.3/_sources/output/botcore.utils.members.rst.txt b/v8.0.0-beta.3/_sources/output/botcore.utils.members.rst.txt
new file mode 100644
index 00000000..ab65d36b
--- /dev/null
+++ b/v8.0.0-beta.3/_sources/output/botcore.utils.members.rst.txt
@@ -0,0 +1,7 @@
+members
+============================
+
+.. automodule:: botcore.utils.members
+ :members:
+ :special-members:
+ :show-inheritance:
diff --git a/v8.0.0-beta.3/_sources/output/botcore.utils.regex.rst.txt b/v8.0.0-beta.3/_sources/output/botcore.utils.regex.rst.txt
new file mode 100644
index 00000000..405e416a
--- /dev/null
+++ b/v8.0.0-beta.3/_sources/output/botcore.utils.regex.rst.txt
@@ -0,0 +1,7 @@
+regex
+==========================
+
+.. automodule:: botcore.utils.regex
+ :members:
+ :special-members:
+ :show-inheritance:
diff --git a/v8.0.0-beta.3/_sources/output/botcore.utils.rst.txt b/v8.0.0-beta.3/_sources/output/botcore.utils.rst.txt
new file mode 100644
index 00000000..a954585c
--- /dev/null
+++ b/v8.0.0-beta.3/_sources/output/botcore.utils.rst.txt
@@ -0,0 +1,22 @@
+Utils
+=====
+
+.. automodule:: botcore.utils
+ :members:
+ :special-members:
+ :show-inheritance:
+
+Submodules
+----------
+
+.. toctree::
+ :maxdepth: 4
+
+ botcore.utils.caching
+ botcore.utils.channel
+ botcore.utils.commands
+ botcore.utils.interactions
+ botcore.utils.logging
+ botcore.utils.members
+ botcore.utils.regex
+ botcore.utils.scheduling
diff --git a/v8.0.0-beta.3/_sources/output/botcore.utils.scheduling.rst.txt b/v8.0.0-beta.3/_sources/output/botcore.utils.scheduling.rst.txt
new file mode 100644
index 00000000..41ffe1c6
--- /dev/null
+++ b/v8.0.0-beta.3/_sources/output/botcore.utils.scheduling.rst.txt
@@ -0,0 +1,7 @@
+scheduling
+===============================
+
+.. automodule:: botcore.utils.scheduling
+ :members:
+ :special-members:
+ :show-inheritance:
diff --git a/v8.0.0-beta.3/_static/_sphinx_javascript_frameworks_compat.js b/v8.0.0-beta.3/_static/_sphinx_javascript_frameworks_compat.js
new file mode 100644
index 00000000..8549469d
--- /dev/null
+++ b/v8.0.0-beta.3/_static/_sphinx_javascript_frameworks_compat.js
@@ -0,0 +1,134 @@
+/*
+ * _sphinx_javascript_frameworks_compat.js
+ * ~~~~~~~~~~
+ *
+ * Compatability shim for jQuery and underscores.js.
+ *
+ * WILL BE REMOVED IN Sphinx 6.0
+ * xref RemovedInSphinx60Warning
+ *
+ */
+
+/**
+ * select a different prefix for underscore
+ */
+$u = _.noConflict();
+
+
+/**
+ * small helper function to urldecode strings
+ *
+ * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent#Decoding_query_parameters_from_a_URL
+ */
+jQuery.urldecode = function(x) {
+ if (!x) {
+ return x
+ }
+ return decodeURIComponent(x.replace(/\+/g, ' '));
+};
+
+/**
+ * small helper function to urlencode strings
+ */
+jQuery.urlencode = encodeURIComponent;
+
+/**
+ * This function returns the parsed url parameters of the
+ * current request. Multiple values per key are supported,
+ * it will always return arrays of strings for the value parts.
+ */
+jQuery.getQueryParameters = function(s) {
+ if (typeof s === 'undefined')
+ s = document.location.search;
+ var parts = s.substr(s.indexOf('?') + 1).split('&');
+ var result = {};
+ for (var i = 0; i < parts.length; i++) {
+ var tmp = parts[i].split('=', 2);
+ var key = jQuery.urldecode(tmp[0]);
+ var value = jQuery.urldecode(tmp[1]);
+ if (key in result)
+ result[key].push(value);
+ else
+ result[key] = [value];
+ }
+ return result;
+};
+
+/**
+ * highlight a given string on a jquery object by wrapping it in
+ * span elements with the given class name.
+ */
+jQuery.fn.highlightText = function(text, className) {
+ function highlight(node, addItems) {
+ if (node.nodeType === 3) {
+ var val = node.nodeValue;
+ var pos = val.toLowerCase().indexOf(text);
+ if (pos >= 0 &&
+ !jQuery(node.parentNode).hasClass(className) &&
+ !jQuery(node.parentNode).hasClass("nohighlight")) {
+ var span;
+ var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg");
+ if (isInSVG) {
+ span = document.createElementNS("http://www.w3.org/2000/svg", "tspan");
+ } else {
+ span = document.createElement("span");
+ span.className = className;
+ }
+ span.appendChild(document.createTextNode(val.substr(pos, text.length)));
+ node.parentNode.insertBefore(span, node.parentNode.insertBefore(
+ document.createTextNode(val.substr(pos + text.length)),
+ node.nextSibling));
+ node.nodeValue = val.substr(0, pos);
+ if (isInSVG) {
+ var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect");
+ var bbox = node.parentElement.getBBox();
+ rect.x.baseVal.value = bbox.x;
+ rect.y.baseVal.value = bbox.y;
+ rect.width.baseVal.value = bbox.width;
+ rect.height.baseVal.value = bbox.height;
+ rect.setAttribute('class', className);
+ addItems.push({
+ "parent": node.parentNode,
+ "target": rect});
+ }
+ }
+ }
+ else if (!jQuery(node).is("button, select, textarea")) {
+ jQuery.each(node.childNodes, function() {
+ highlight(this, addItems);
+ });
+ }
+ }
+ var addItems = [];
+ var result = this.each(function() {
+ highlight(this, addItems);
+ });
+ for (var i = 0; i < addItems.length; ++i) {
+ jQuery(addItems[i].parent).before(addItems[i].target);
+ }
+ return result;
+};
+
+/*
+ * backward compatibility for jQuery.browser
+ * This will be supported until firefox bug is fixed.
+ */
+if (!jQuery.browser) {
+ jQuery.uaMatch = function(ua) {
+ ua = ua.toLowerCase();
+
+ var match = /(chrome)[ \/]([\w.]+)/.exec(ua) ||
+ /(webkit)[ \/]([\w.]+)/.exec(ua) ||
+ /(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) ||
+ /(msie) ([\w.]+)/.exec(ua) ||
+ ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) ||
+ [];
+
+ return {
+ browser: match[ 1 ] || "",
+ version: match[ 2 ] || "0"
+ };
+ };
+ jQuery.browser = {};
+ jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true;
+}
diff --git a/v8.0.0-beta.3/_static/basic.css b/v8.0.0-beta.3/_static/basic.css
new file mode 100644
index 00000000..4e9a9f1f
--- /dev/null
+++ b/v8.0.0-beta.3/_static/basic.css
@@ -0,0 +1,900 @@
+/*
+ * basic.css
+ * ~~~~~~~~~
+ *
+ * Sphinx stylesheet -- basic theme.
+ *
+ * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
+ * :license: BSD, see LICENSE for details.
+ *
+ */
+
+/* -- main layout ----------------------------------------------------------- */
+
+div.clearer {
+ clear: both;
+}
+
+div.section::after {
+ display: block;
+ content: '';
+ clear: left;
+}
+
+/* -- relbar ---------------------------------------------------------------- */
+
+div.related {
+ width: 100%;
+ font-size: 90%;
+}
+
+div.related h3 {
+ display: none;
+}
+
+div.related ul {
+ margin: 0;
+ padding: 0 0 0 10px;
+ list-style: none;
+}
+
+div.related li {
+ display: inline;
+}
+
+div.related li.right {
+ float: right;
+ margin-right: 5px;
+}
+
+/* -- sidebar --------------------------------------------------------------- */
+
+div.sphinxsidebarwrapper {
+ padding: 10px 5px 0 10px;
+}
+
+div.sphinxsidebar {
+ float: left;
+ width: 230px;
+ margin-left: -100%;
+ font-size: 90%;
+ word-wrap: break-word;
+ overflow-wrap : break-word;
+}
+
+div.sphinxsidebar ul {
+ list-style: none;
+}
+
+div.sphinxsidebar ul ul,
+div.sphinxsidebar ul.want-points {
+ margin-left: 20px;
+ list-style: square;
+}
+
+div.sphinxsidebar ul ul {
+ margin-top: 0;
+ margin-bottom: 0;
+}
+
+div.sphinxsidebar form {
+ margin-top: 10px;
+}
+
+div.sphinxsidebar input {
+ border: 1px solid #98dbcc;
+ font-family: sans-serif;
+ font-size: 1em;
+}
+
+div.sphinxsidebar #searchbox form.search {
+ overflow: hidden;
+}
+
+div.sphinxsidebar #searchbox input[type="text"] {
+ float: left;
+ width: 80%;
+ padding: 0.25em;
+ box-sizing: border-box;
+}
+
+div.sphinxsidebar #searchbox input[type="submit"] {
+ float: left;
+ width: 20%;
+ border-left: none;
+ padding: 0.25em;
+ box-sizing: border-box;
+}
+
+
+img {
+ border: 0;
+ max-width: 100%;
+}
+
+/* -- search page ----------------------------------------------------------- */
+
+ul.search {
+ margin: 10px 0 0 20px;
+ padding: 0;
+}
+
+ul.search li {
+ padding: 5px 0 5px 20px;
+ background-image: url(file.png);
+ background-repeat: no-repeat;
+ background-position: 0 7px;
+}
+
+ul.search li a {
+ font-weight: bold;
+}
+
+ul.search li p.context {
+ color: #888;
+ margin: 2px 0 0 30px;
+ text-align: left;
+}
+
+ul.keywordmatches li.goodmatch a {
+ font-weight: bold;
+}
+
+/* -- index page ------------------------------------------------------------ */
+
+table.contentstable {
+ width: 90%;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+table.contentstable p.biglink {
+ line-height: 150%;
+}
+
+a.biglink {
+ font-size: 1.3em;
+}
+
+span.linkdescr {
+ font-style: italic;
+ padding-top: 5px;
+ font-size: 90%;
+}
+
+/* -- general index --------------------------------------------------------- */
+
+table.indextable {
+ width: 100%;
+}
+
+table.indextable td {
+ text-align: left;
+ vertical-align: top;
+}
+
+table.indextable ul {
+ margin-top: 0;
+ margin-bottom: 0;
+ list-style-type: none;
+}
+
+table.indextable > tbody > tr > td > ul {
+ padding-left: 0em;
+}
+
+table.indextable tr.pcap {
+ height: 10px;
+}
+
+table.indextable tr.cap {
+ margin-top: 10px;
+ background-color: #f2f2f2;
+}
+
+img.toggler {
+ margin-right: 3px;
+ margin-top: 3px;
+ cursor: pointer;
+}
+
+div.modindex-jumpbox {
+ border-top: 1px solid #ddd;
+ border-bottom: 1px solid #ddd;
+ margin: 1em 0 1em 0;
+ padding: 0.4em;
+}
+
+div.genindex-jumpbox {
+ border-top: 1px solid #ddd;
+ border-bottom: 1px solid #ddd;
+ margin: 1em 0 1em 0;
+ padding: 0.4em;
+}
+
+/* -- domain module index --------------------------------------------------- */
+
+table.modindextable td {
+ padding: 2px;
+ border-collapse: collapse;
+}
+
+/* -- general body styles --------------------------------------------------- */
+
+div.body {
+ min-width: 360px;
+ max-width: 800px;
+}
+
+div.body p, div.body dd, div.body li, div.body blockquote {
+ -moz-hyphens: auto;
+ -ms-hyphens: auto;
+ -webkit-hyphens: auto;
+ hyphens: auto;
+}
+
+a.headerlink {
+ visibility: hidden;
+}
+
+h1:hover > a.headerlink,
+h2:hover > a.headerlink,
+h3:hover > a.headerlink,
+h4:hover > a.headerlink,
+h5:hover > a.headerlink,
+h6:hover > a.headerlink,
+dt:hover > a.headerlink,
+caption:hover > a.headerlink,
+p.caption:hover > a.headerlink,
+div.code-block-caption:hover > a.headerlink {
+ visibility: visible;
+}
+
+div.body p.caption {
+ text-align: inherit;
+}
+
+div.body td {
+ text-align: left;
+}
+
+.first {
+ margin-top: 0 !important;
+}
+
+p.rubric {
+ margin-top: 30px;
+ font-weight: bold;
+}
+
+img.align-left, figure.align-left, .figure.align-left, object.align-left {
+ clear: left;
+ float: left;
+ margin-right: 1em;
+}
+
+img.align-right, figure.align-right, .figure.align-right, object.align-right {
+ clear: right;
+ float: right;
+ margin-left: 1em;
+}
+
+img.align-center, figure.align-center, .figure.align-center, object.align-center {
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+img.align-default, figure.align-default, .figure.align-default {
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+.align-left {
+ text-align: left;
+}
+
+.align-center {
+ text-align: center;
+}
+
+.align-default {
+ text-align: center;
+}
+
+.align-right {
+ text-align: right;
+}
+
+/* -- sidebars -------------------------------------------------------------- */
+
+div.sidebar,
+aside.sidebar {
+ margin: 0 0 0.5em 1em;
+ border: 1px solid #ddb;
+ padding: 7px;
+ background-color: #ffe;
+ width: 40%;
+ float: right;
+ clear: right;
+ overflow-x: auto;
+}
+
+p.sidebar-title {
+ font-weight: bold;
+}
+nav.contents,
+aside.topic,
+div.admonition, div.topic, blockquote {
+ clear: left;
+}
+
+/* -- topics ---------------------------------------------------------------- */
+nav.contents,
+aside.topic,
+div.topic {
+ border: 1px solid #ccc;
+ padding: 7px;
+ margin: 10px 0 10px 0;
+}
+
+p.topic-title {
+ font-size: 1.1em;
+ font-weight: bold;
+ margin-top: 10px;
+}
+
+/* -- admonitions ----------------------------------------------------------- */
+
+div.admonition {
+ margin-top: 10px;
+ margin-bottom: 10px;
+ padding: 7px;
+}
+
+div.admonition dt {
+ font-weight: bold;
+}
+
+p.admonition-title {
+ margin: 0px 10px 5px 0px;
+ font-weight: bold;
+}
+
+div.body p.centered {
+ text-align: center;
+ margin-top: 25px;
+}
+
+/* -- content of sidebars/topics/admonitions -------------------------------- */
+
+div.sidebar > :last-child,
+aside.sidebar > :last-child,
+nav.contents > :last-child,
+aside.topic > :last-child,
+div.topic > :last-child,
+div.admonition > :last-child {
+ margin-bottom: 0;
+}
+
+div.sidebar::after,
+aside.sidebar::after,
+nav.contents::after,
+aside.topic::after,
+div.topic::after,
+div.admonition::after,
+blockquote::after {
+ display: block;
+ content: '';
+ clear: both;
+}
+
+/* -- tables ---------------------------------------------------------------- */
+
+table.docutils {
+ margin-top: 10px;
+ margin-bottom: 10px;
+ border: 0;
+ border-collapse: collapse;
+}
+
+table.align-center {
+ margin-left: auto;
+ margin-right: auto;
+}
+
+table.align-default {
+ margin-left: auto;
+ margin-right: auto;
+}
+
+table caption span.caption-number {
+ font-style: italic;
+}
+
+table caption span.caption-text {
+}
+
+table.docutils td, table.docutils th {
+ padding: 1px 8px 1px 5px;
+ border-top: 0;
+ border-left: 0;
+ border-right: 0;
+ border-bottom: 1px solid #aaa;
+}
+
+th {
+ text-align: left;
+ padding-right: 5px;
+}
+
+table.citation {
+ border-left: solid 1px gray;
+ margin-left: 1px;
+}
+
+table.citation td {
+ border-bottom: none;
+}
+
+th > :first-child,
+td > :first-child {
+ margin-top: 0px;
+}
+
+th > :last-child,
+td > :last-child {
+ margin-bottom: 0px;
+}
+
+/* -- figures --------------------------------------------------------------- */
+
+div.figure, figure {
+ margin: 0.5em;
+ padding: 0.5em;
+}
+
+div.figure p.caption, figcaption {
+ padding: 0.3em;
+}
+
+div.figure p.caption span.caption-number,
+figcaption span.caption-number {
+ font-style: italic;
+}
+
+div.figure p.caption span.caption-text,
+figcaption span.caption-text {
+}
+
+/* -- field list styles ----------------------------------------------------- */
+
+table.field-list td, table.field-list th {
+ border: 0 !important;
+}
+
+.field-list ul {
+ margin: 0;
+ padding-left: 1em;
+}
+
+.field-list p {
+ margin: 0;
+}
+
+.field-name {
+ -moz-hyphens: manual;
+ -ms-hyphens: manual;
+ -webkit-hyphens: manual;
+ hyphens: manual;
+}
+
+/* -- hlist styles ---------------------------------------------------------- */
+
+table.hlist {
+ margin: 1em 0;
+}
+
+table.hlist td {
+ vertical-align: top;
+}
+
+/* -- object description styles --------------------------------------------- */
+
+.sig {
+ font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace;
+}
+
+.sig-name, code.descname {
+ background-color: transparent;
+ font-weight: bold;
+}
+
+.sig-name {
+ font-size: 1.1em;
+}
+
+code.descname {
+ font-size: 1.2em;
+}
+
+.sig-prename, code.descclassname {
+ background-color: transparent;
+}
+
+.optional {
+ font-size: 1.3em;
+}
+
+.sig-paren {
+ font-size: larger;
+}
+
+.sig-param.n {
+ font-style: italic;
+}
+
+/* C++ specific styling */
+
+.sig-inline.c-texpr,
+.sig-inline.cpp-texpr {
+ font-family: unset;
+}
+
+.sig.c .k, .sig.c .kt,
+.sig.cpp .k, .sig.cpp .kt {
+ color: #0033B3;
+}
+
+.sig.c .m,
+.sig.cpp .m {
+ color: #1750EB;
+}
+
+.sig.c .s, .sig.c .sc,
+.sig.cpp .s, .sig.cpp .sc {
+ color: #067D17;
+}
+
+
+/* -- other body styles ----------------------------------------------------- */
+
+ol.arabic {
+ list-style: decimal;
+}
+
+ol.loweralpha {
+ list-style: lower-alpha;
+}
+
+ol.upperalpha {
+ list-style: upper-alpha;
+}
+
+ol.lowerroman {
+ list-style: lower-roman;
+}
+
+ol.upperroman {
+ list-style: upper-roman;
+}
+
+:not(li) > ol > li:first-child > :first-child,
+:not(li) > ul > li:first-child > :first-child {
+ margin-top: 0px;
+}
+
+:not(li) > ol > li:last-child > :last-child,
+:not(li) > ul > li:last-child > :last-child {
+ margin-bottom: 0px;
+}
+
+ol.simple ol p,
+ol.simple ul p,
+ul.simple ol p,
+ul.simple ul p {
+ margin-top: 0;
+}
+
+ol.simple > li:not(:first-child) > p,
+ul.simple > li:not(:first-child) > p {
+ margin-top: 0;
+}
+
+ol.simple p,
+ul.simple p {
+ margin-bottom: 0;
+}
+aside.footnote > span,
+div.citation > span {
+ float: left;
+}
+aside.footnote > span:last-of-type,
+div.citation > span:last-of-type {
+ padding-right: 0.5em;
+}
+aside.footnote > p {
+ margin-left: 2em;
+}
+div.citation > p {
+ margin-left: 4em;
+}
+aside.footnote > p:last-of-type,
+div.citation > p:last-of-type {
+ margin-bottom: 0em;
+}
+aside.footnote > p:last-of-type:after,
+div.citation > p:last-of-type:after {
+ content: "";
+ clear: both;
+}
+
+dl.field-list {
+ display: grid;
+ grid-template-columns: fit-content(30%) auto;
+}
+
+dl.field-list > dt {
+ font-weight: bold;
+ word-break: break-word;
+ padding-left: 0.5em;
+ padding-right: 5px;
+}
+
+dl.field-list > dd {
+ padding-left: 0.5em;
+ margin-top: 0em;
+ margin-left: 0em;
+ margin-bottom: 0em;
+}
+
+dl {
+ margin-bottom: 15px;
+}
+
+dd > :first-child {
+ margin-top: 0px;
+}
+
+dd ul, dd table {
+ margin-bottom: 10px;
+}
+
+dd {
+ margin-top: 3px;
+ margin-bottom: 10px;
+ margin-left: 30px;
+}
+
+dl > dd:last-child,
+dl > dd:last-child > :last-child {
+ margin-bottom: 0;
+}
+
+dt:target, span.highlighted {
+ background-color: #fbe54e;
+}
+
+rect.highlighted {
+ fill: #fbe54e;
+}
+
+dl.glossary dt {
+ font-weight: bold;
+ font-size: 1.1em;
+}
+
+.versionmodified {
+ font-style: italic;
+}
+
+.system-message {
+ background-color: #fda;
+ padding: 5px;
+ border: 3px solid red;
+}
+
+.footnote:target {
+ background-color: #ffa;
+}
+
+.line-block {
+ display: block;
+ margin-top: 1em;
+ margin-bottom: 1em;
+}
+
+.line-block .line-block {
+ margin-top: 0;
+ margin-bottom: 0;
+ margin-left: 1.5em;
+}
+
+.guilabel, .menuselection {
+ font-family: sans-serif;
+}
+
+.accelerator {
+ text-decoration: underline;
+}
+
+.classifier {
+ font-style: oblique;
+}
+
+.classifier:before {
+ font-style: normal;
+ margin: 0 0.5em;
+ content: ":";
+ display: inline-block;
+}
+
+abbr, acronym {
+ border-bottom: dotted 1px;
+ cursor: help;
+}
+
+/* -- code displays --------------------------------------------------------- */
+
+pre {
+ overflow: auto;
+ overflow-y: hidden; /* fixes display issues on Chrome browsers */
+}
+
+pre, div[class*="highlight-"] {
+ clear: both;
+}
+
+span.pre {
+ -moz-hyphens: none;
+ -ms-hyphens: none;
+ -webkit-hyphens: none;
+ hyphens: none;
+ white-space: nowrap;
+}
+
+div[class*="highlight-"] {
+ margin: 1em 0;
+}
+
+td.linenos pre {
+ border: 0;
+ background-color: transparent;
+ color: #aaa;
+}
+
+table.highlighttable {
+ display: block;
+}
+
+table.highlighttable tbody {
+ display: block;
+}
+
+table.highlighttable tr {
+ display: flex;
+}
+
+table.highlighttable td {
+ margin: 0;
+ padding: 0;
+}
+
+table.highlighttable td.linenos {
+ padding-right: 0.5em;
+}
+
+table.highlighttable td.code {
+ flex: 1;
+ overflow: hidden;
+}
+
+.highlight .hll {
+ display: block;
+}
+
+div.highlight pre,
+table.highlighttable pre {
+ margin: 0;
+}
+
+div.code-block-caption + div {
+ margin-top: 0;
+}
+
+div.code-block-caption {
+ margin-top: 1em;
+ padding: 2px 5px;
+ font-size: small;
+}
+
+div.code-block-caption code {
+ background-color: transparent;
+}
+
+table.highlighttable td.linenos,
+span.linenos,
+div.highlight span.gp { /* gp: Generic.Prompt */
+ user-select: none;
+ -webkit-user-select: text; /* Safari fallback only */
+ -webkit-user-select: none; /* Chrome/Safari */
+ -moz-user-select: none; /* Firefox */
+ -ms-user-select: none; /* IE10+ */
+}
+
+div.code-block-caption span.caption-number {
+ padding: 0.1em 0.3em;
+ font-style: italic;
+}
+
+div.code-block-caption span.caption-text {
+}
+
+div.literal-block-wrapper {
+ margin: 1em 0;
+}
+
+code.xref, a code {
+ background-color: transparent;
+ font-weight: bold;
+}
+
+h1 code, h2 code, h3 code, h4 code, h5 code, h6 code {
+ background-color: transparent;
+}
+
+.viewcode-link {
+ float: right;
+}
+
+.viewcode-back {
+ float: right;
+ font-family: sans-serif;
+}
+
+div.viewcode-block:target {
+ margin: -1px -10px;
+ padding: 0 10px;
+}
+
+/* -- math display ---------------------------------------------------------- */
+
+img.math {
+ vertical-align: middle;
+}
+
+div.body div.math p {
+ text-align: center;
+}
+
+span.eqno {
+ float: right;
+}
+
+span.eqno a.headerlink {
+ position: absolute;
+ z-index: 1;
+}
+
+div.math:hover a.headerlink {
+ visibility: visible;
+}
+
+/* -- printout stylesheet --------------------------------------------------- */
+
+@media print {
+ div.document,
+ div.documentwrapper,
+ div.bodywrapper {
+ margin: 0 !important;
+ width: 100%;
+ }
+
+ div.sphinxsidebar,
+ div.related,
+ div.footer,
+ #top-link {
+ display: none;
+ }
+}
\ No newline at end of file
diff --git a/v8.0.0-beta.3/_static/changelog.css b/v8.0.0-beta.3/_static/changelog.css
new file mode 100644
index 00000000..343792a1
--- /dev/null
+++ b/v8.0.0-beta.3/_static/changelog.css
@@ -0,0 +1,11 @@
+[data-theme='dark'] #changelog .dark,
+[data-theme='light'] #changelog .light,
+[data-theme='auto'] #changelog .light {
+ display: inline;
+}
+
+[data-theme='dark'] #changelog .light,
+[data-theme='light'] #changelog .dark,
+[data-theme='auto'] #changelog .dark {
+ display: none;
+}
diff --git a/v8.0.0-beta.3/_static/changelog.js b/v8.0.0-beta.3/_static/changelog.js
new file mode 100644
index 00000000..94834eaa
--- /dev/null
+++ b/v8.0.0-beta.3/_static/changelog.js
@@ -0,0 +1,41 @@
+/** Update the changelog colors in dark mode */
+function changelog_color_main() {
+ const changelog = document.getElementById("changelog");
+
+ function updateEntryColor(span) {
+ const lightColorSpan = span;
+ const darkColorSpan = lightColorSpan.cloneNode(true);
+
+ lightColorSpan.parentElement.insertBefore(darkColorSpan, lightColorSpan);
+
+ lightColorSpan.classList.add("light");
+ darkColorSpan.classList.add("dark");
+
+ let color;
+ switch (darkColorSpan.textContent) {
+ case "Feature":
+ color = "#5BF38E";
+ break;
+ case "Support":
+ color = "#55A5E7";
+ break;
+ case "Bug":
+ color = "#E14F4F";
+ break;
+ default:
+ color = lightColorSpan.style.color;
+ }
+
+ darkColorSpan.style["color"] = color;
+ }
+
+ const TYPES = ["Feature", "Bug", "Support", "Breaking"];
+
+ if (changelog !== null) {
+ Array.from(changelog.getElementsByTagName("span"))
+ .filter(value => TYPES.includes(value.textContent))
+ .forEach(updateEntryColor)
+ }
+}
+
+changelog_color_main();
diff --git a/v8.0.0-beta.3/_static/debug.css b/v8.0.0-beta.3/_static/debug.css
new file mode 100644
index 00000000..3264805c
--- /dev/null
+++ b/v8.0.0-beta.3/_static/debug.css
@@ -0,0 +1,69 @@
+/*
+ This CSS file should be overridden by the theme authors. It's
+ meant for debugging and developing the skeleton that this theme provides.
+*/
+body {
+ font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
+ "Apple Color Emoji", "Segoe UI Emoji";
+ background: lavender;
+}
+.sb-announcement {
+ background: rgb(131, 131, 131);
+}
+.sb-announcement__inner {
+ background: black;
+ color: white;
+}
+.sb-header {
+ background: lightskyblue;
+}
+.sb-header__inner {
+ background: royalblue;
+ color: white;
+}
+.sb-header-secondary {
+ background: lightcyan;
+}
+.sb-header-secondary__inner {
+ background: cornflowerblue;
+ color: white;
+}
+.sb-sidebar-primary {
+ background: lightgreen;
+}
+.sb-main {
+ background: blanchedalmond;
+}
+.sb-main__inner {
+ background: antiquewhite;
+}
+.sb-header-article {
+ background: lightsteelblue;
+}
+.sb-article-container {
+ background: snow;
+}
+.sb-article-main {
+ background: white;
+}
+.sb-footer-article {
+ background: lightpink;
+}
+.sb-sidebar-secondary {
+ background: lightgoldenrodyellow;
+}
+.sb-footer-content {
+ background: plum;
+}
+.sb-footer-content__inner {
+ background: palevioletred;
+}
+.sb-footer {
+ background: pink;
+}
+.sb-footer__inner {
+ background: salmon;
+}
+[role="main"] {
+ background: white;
+}
diff --git a/v8.0.0-beta.3/_static/doctools.js b/v8.0.0-beta.3/_static/doctools.js
new file mode 100644
index 00000000..c3db08d1
--- /dev/null
+++ b/v8.0.0-beta.3/_static/doctools.js
@@ -0,0 +1,264 @@
+/*
+ * doctools.js
+ * ~~~~~~~~~~~
+ *
+ * Base JavaScript utilities for all Sphinx HTML documentation.
+ *
+ * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
+ * :license: BSD, see LICENSE for details.
+ *
+ */
+"use strict";
+
+const _ready = (callback) => {
+ if (document.readyState !== "loading") {
+ callback();
+ } else {
+ document.addEventListener("DOMContentLoaded", callback);
+ }
+};
+
+/**
+ * highlight a given string on a node by wrapping it in
+ * span elements with the given class name.
+ */
+const _highlight = (node, addItems, text, className) => {
+ if (node.nodeType === Node.TEXT_NODE) {
+ const val = node.nodeValue;
+ const parent = node.parentNode;
+ const pos = val.toLowerCase().indexOf(text);
+ if (
+ pos >= 0 &&
+ !parent.classList.contains(className) &&
+ !parent.classList.contains("nohighlight")
+ ) {
+ let span;
+
+ const closestNode = parent.closest("body, svg, foreignObject");
+ const isInSVG = closestNode && closestNode.matches("svg");
+ if (isInSVG) {
+ span = document.createElementNS("http://www.w3.org/2000/svg", "tspan");
+ } else {
+ span = document.createElement("span");
+ span.classList.add(className);
+ }
+
+ span.appendChild(document.createTextNode(val.substr(pos, text.length)));
+ parent.insertBefore(
+ span,
+ parent.insertBefore(
+ document.createTextNode(val.substr(pos + text.length)),
+ node.nextSibling
+ )
+ );
+ node.nodeValue = val.substr(0, pos);
+
+ if (isInSVG) {
+ const rect = document.createElementNS(
+ "http://www.w3.org/2000/svg",
+ "rect"
+ );
+ const bbox = parent.getBBox();
+ rect.x.baseVal.value = bbox.x;
+ rect.y.baseVal.value = bbox.y;
+ rect.width.baseVal.value = bbox.width;
+ rect.height.baseVal.value = bbox.height;
+ rect.setAttribute("class", className);
+ addItems.push({ parent: parent, target: rect });
+ }
+ }
+ } else if (node.matches && !node.matches("button, select, textarea")) {
+ node.childNodes.forEach((el) => _highlight(el, addItems, text, className));
+ }
+};
+const _highlightText = (thisNode, text, className) => {
+ let addItems = [];
+ _highlight(thisNode, addItems, text, className);
+ addItems.forEach((obj) =>
+ obj.parent.insertAdjacentElement("beforebegin", obj.target)
+ );
+};
+
+/**
+ * Small JavaScript module for the documentation.
+ */
+const Documentation = {
+ init: () => {
+ Documentation.highlightSearchWords();
+ Documentation.initDomainIndexTable();
+ Documentation.initOnKeyListeners();
+ },
+
+ /**
+ * i18n support
+ */
+ TRANSLATIONS: {},
+ PLURAL_EXPR: (n) => (n === 1 ? 0 : 1),
+ LOCALE: "unknown",
+
+ // gettext and ngettext don't access this so that the functions
+ // can safely bound to a different name (_ = Documentation.gettext)
+ gettext: (string) => {
+ const translated = Documentation.TRANSLATIONS[string];
+ switch (typeof translated) {
+ case "undefined":
+ return string; // no translation
+ case "string":
+ return translated; // translation exists
+ default:
+ return translated[0]; // (singular, plural) translation tuple exists
+ }
+ },
+
+ ngettext: (singular, plural, n) => {
+ const translated = Documentation.TRANSLATIONS[singular];
+ if (typeof translated !== "undefined")
+ return translated[Documentation.PLURAL_EXPR(n)];
+ return n === 1 ? singular : plural;
+ },
+
+ addTranslations: (catalog) => {
+ Object.assign(Documentation.TRANSLATIONS, catalog.messages);
+ Documentation.PLURAL_EXPR = new Function(
+ "n",
+ `return (${catalog.plural_expr})`
+ );
+ Documentation.LOCALE = catalog.locale;
+ },
+
+ /**
+ * highlight the search words provided in the url in the text
+ */
+ highlightSearchWords: () => {
+ const highlight =
+ new URLSearchParams(window.location.search).get("highlight") || "";
+ const terms = highlight.toLowerCase().split(/\s+/).filter(x => x);
+ if (terms.length === 0) return; // nothing to do
+
+ // There should never be more than one element matching "div.body"
+ const divBody = document.querySelectorAll("div.body");
+ const body = divBody.length ? divBody[0] : document.querySelector("body");
+ window.setTimeout(() => {
+ terms.forEach((term) => _highlightText(body, term, "highlighted"));
+ }, 10);
+
+ const searchBox = document.getElementById("searchbox");
+ if (searchBox === null) return;
+ searchBox.appendChild(
+ document
+ .createRange()
+ .createContextualFragment(
+ '' +
+ '' +
+ Documentation.gettext("Hide Search Matches") +
+ "
"
+ )
+ );
+ },
+
+ /**
+ * helper function to hide the search marks again
+ */
+ hideSearchWords: () => {
+ document
+ .querySelectorAll("#searchbox .highlight-link")
+ .forEach((el) => el.remove());
+ document
+ .querySelectorAll("span.highlighted")
+ .forEach((el) => el.classList.remove("highlighted"));
+ const url = new URL(window.location);
+ url.searchParams.delete("highlight");
+ window.history.replaceState({}, "", url);
+ },
+
+ /**
+ * helper function to focus on search bar
+ */
+ focusSearchBar: () => {
+ document.querySelectorAll("input[name=q]")[0]?.focus();
+ },
+
+ /**
+ * Initialise the domain index toggle buttons
+ */
+ initDomainIndexTable: () => {
+ const toggler = (el) => {
+ const idNumber = el.id.substr(7);
+ const toggledRows = document.querySelectorAll(`tr.cg-${idNumber}`);
+ if (el.src.substr(-9) === "minus.png") {
+ el.src = `${el.src.substr(0, el.src.length - 9)}plus.png`;
+ toggledRows.forEach((el) => (el.style.display = "none"));
+ } else {
+ el.src = `${el.src.substr(0, el.src.length - 8)}minus.png`;
+ toggledRows.forEach((el) => (el.style.display = ""));
+ }
+ };
+
+ const togglerElements = document.querySelectorAll("img.toggler");
+ togglerElements.forEach((el) =>
+ el.addEventListener("click", (event) => toggler(event.currentTarget))
+ );
+ togglerElements.forEach((el) => (el.style.display = ""));
+ if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) togglerElements.forEach(toggler);
+ },
+
+ initOnKeyListeners: () => {
+ // only install a listener if it is really needed
+ if (
+ !DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS &&
+ !DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS
+ )
+ return;
+
+ const blacklistedElements = new Set([
+ "TEXTAREA",
+ "INPUT",
+ "SELECT",
+ "BUTTON",
+ ]);
+ document.addEventListener("keydown", (event) => {
+ if (blacklistedElements.has(document.activeElement.tagName)) return; // bail for input elements
+ if (event.altKey || event.ctrlKey || event.metaKey) return; // bail with special keys
+
+ if (!event.shiftKey) {
+ switch (event.key) {
+ case "ArrowLeft":
+ if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) break;
+
+ const prevLink = document.querySelector('link[rel="prev"]');
+ if (prevLink && prevLink.href) {
+ window.location.href = prevLink.href;
+ event.preventDefault();
+ }
+ break;
+ case "ArrowRight":
+ if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) break;
+
+ const nextLink = document.querySelector('link[rel="next"]');
+ if (nextLink && nextLink.href) {
+ window.location.href = nextLink.href;
+ event.preventDefault();
+ }
+ break;
+ case "Escape":
+ if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) break;
+ Documentation.hideSearchWords();
+ event.preventDefault();
+ }
+ }
+
+ // some keyboard layouts may need Shift to get /
+ switch (event.key) {
+ case "/":
+ if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) break;
+ Documentation.focusSearchBar();
+ event.preventDefault();
+ }
+ });
+ },
+};
+
+// quick alias for translations
+const _ = Documentation.gettext;
+
+_ready(Documentation.init);
diff --git a/v8.0.0-beta.3/_static/documentation_options.js b/v8.0.0-beta.3/_static/documentation_options.js
new file mode 100644
index 00000000..3d8c9b59
--- /dev/null
+++ b/v8.0.0-beta.3/_static/documentation_options.js
@@ -0,0 +1,14 @@
+var DOCUMENTATION_OPTIONS = {
+ URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
+ VERSION: '8.0.0-beta.3',
+ LANGUAGE: 'en',
+ COLLAPSE_INDEX: false,
+ BUILDER: 'html',
+ FILE_SUFFIX: '.html',
+ LINK_SUFFIX: '.html',
+ HAS_SOURCE: true,
+ SOURCELINK_SUFFIX: '.txt',
+ NAVIGATION_WITH_KEYS: false,
+ SHOW_SEARCH_SUMMARY: true,
+ ENABLE_SEARCH_SHORTCUTS: true,
+};
\ No newline at end of file
diff --git a/v8.0.0-beta.3/_static/file.png b/v8.0.0-beta.3/_static/file.png
new file mode 100644
index 00000000..a858a410
Binary files /dev/null and b/v8.0.0-beta.3/_static/file.png differ
diff --git a/v8.0.0-beta.3/_static/index.css b/v8.0.0-beta.3/_static/index.css
new file mode 100644
index 00000000..54f3f771
--- /dev/null
+++ b/v8.0.0-beta.3/_static/index.css
@@ -0,0 +1,3 @@
+h1 {
+ font-weight: 300;
+}
diff --git a/v8.0.0-beta.3/_static/jquery-3.6.0.js b/v8.0.0-beta.3/_static/jquery-3.6.0.js
new file mode 100644
index 00000000..fc6c299b
--- /dev/null
+++ b/v8.0.0-beta.3/_static/jquery-3.6.0.js
@@ -0,0 +1,10881 @@
+/*!
+ * jQuery JavaScript Library v3.6.0
+ * https://jquery.com/
+ *
+ * Includes Sizzle.js
+ * https://sizzlejs.com/
+ *
+ * Copyright OpenJS Foundation and other contributors
+ * Released under the MIT license
+ * https://jquery.org/license
+ *
+ * Date: 2021-03-02T17:08Z
+ */
+( function( global, factory ) {
+
+ "use strict";
+
+ if ( typeof module === "object" && typeof module.exports === "object" ) {
+
+ // For CommonJS and CommonJS-like environments where a proper `window`
+ // is present, execute the factory and get jQuery.
+ // For environments that do not have a `window` with a `document`
+ // (such as Node.js), expose a factory as module.exports.
+ // This accentuates the need for the creation of a real `window`.
+ // e.g. var jQuery = require("jquery")(window);
+ // See ticket #14549 for more info.
+ module.exports = global.document ?
+ factory( global, true ) :
+ function( w ) {
+ if ( !w.document ) {
+ throw new Error( "jQuery requires a window with a document" );
+ }
+ return factory( w );
+ };
+ } else {
+ factory( global );
+ }
+
+// Pass this if window is not defined yet
+} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
+
+// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1
+// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode
+// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common
+// enough that all such attempts are guarded in a try block.
+"use strict";
+
+var arr = [];
+
+var getProto = Object.getPrototypeOf;
+
+var slice = arr.slice;
+
+var flat = arr.flat ? function( array ) {
+ return arr.flat.call( array );
+} : function( array ) {
+ return arr.concat.apply( [], array );
+};
+
+
+var push = arr.push;
+
+var indexOf = arr.indexOf;
+
+var class2type = {};
+
+var toString = class2type.toString;
+
+var hasOwn = class2type.hasOwnProperty;
+
+var fnToString = hasOwn.toString;
+
+var ObjectFunctionString = fnToString.call( Object );
+
+var support = {};
+
+var isFunction = function isFunction( obj ) {
+
+ // Support: Chrome <=57, Firefox <=52
+ // In some browsers, typeof returns "function" for HTML