diff --git a/discord/abc.py b/discord/abc.py index 80e1f3068..33b852e74 100644 --- a/discord/abc.py +++ b/discord/abc.py @@ -752,8 +752,8 @@ class GuildChannel: await channel.set_permissions(member, overwrite=overwrite) .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`TypeError`. + This function will now raise :exc:`TypeError` instead of + ``InvalidArgument``. Parameters @@ -935,8 +935,8 @@ class GuildChannel: .. versionadded:: 1.7 .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`ValueError` or :exc:`TypeError` in various cases. + This function will now raise :exc:`TypeError` or + :exc:`ValueError` instead of ``InvalidArgument``. Parameters ------------ @@ -1283,8 +1283,8 @@ class Messageable: **Specifying both parameters will lead to an exception**. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`ValueError` or :exc:`TypeError` in various cases. + This function will now raise :exc:`TypeError` or + :exc:`ValueError` instead of ``InvalidArgument``. Parameters ------------ diff --git a/discord/asset.py b/discord/asset.py index 34acad6ff..67ac7dceb 100644 --- a/discord/asset.py +++ b/discord/asset.py @@ -299,8 +299,8 @@ class Asset(AssetMixin): """Returns a new asset with the passed components replaced. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`ValueError`. + This function will now raise :exc:`ValueError` instead of + ``InvalidArgument``. Parameters ----------- @@ -354,8 +354,8 @@ class Asset(AssetMixin): """Returns a new asset with the specified size. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`ValueError`. + This function will now raise :exc:`ValueError` instead of + ``InvalidArgument``. Parameters ------------ @@ -382,8 +382,8 @@ class Asset(AssetMixin): """Returns a new asset with the specified format. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`ValueError`. + This function will now raise :exc:`ValueError` instead of + ``InvalidArgument``. Parameters ------------ @@ -420,8 +420,8 @@ class Asset(AssetMixin): not animated. Otherwise, the asset is not changed. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`ValueError`. + This function will now raise :exc:`ValueError` instead of + ``InvalidArgument``. Parameters ------------ diff --git a/discord/channel.py b/discord/channel.py index 6873103e5..39fefa904 100644 --- a/discord/channel.py +++ b/discord/channel.py @@ -301,8 +301,8 @@ class TextChannel(discord.abc.Messageable, discord.abc.GuildChannel, Hashable): Edits are no longer in-place, the newly edited channel is returned instead. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`ValueError` or :exc:`TypeError` in various cases. + This function will now raise :exc:`TypeError` or + :exc:`ValueError` instead of ``InvalidArgument``. Parameters ---------- @@ -619,8 +619,8 @@ class TextChannel(discord.abc.Messageable, discord.abc.GuildChannel, Hashable): .. versionadded:: 1.3 .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`TypeError`. + This function will now raise :exc:`TypeError` instead of + ``InvalidArgument``. Parameters ----------- @@ -1094,8 +1094,8 @@ class VoiceChannel(VocalGuildChannel): The ``region`` parameter now accepts :class:`str` instead of an enum. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`TypeError`. + This function will now raise :exc:`TypeError` instead of + ``InvalidArgument``. Parameters ---------- @@ -1379,8 +1379,8 @@ class StageChannel(VocalGuildChannel): The ``region`` parameter now accepts :class:`str` instead of an enum. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`TypeError`. + This function will now raise :exc:`TypeError` instead of + ``InvalidArgument``. Parameters ---------- @@ -1537,8 +1537,8 @@ class CategoryChannel(discord.abc.GuildChannel, Hashable): Edits are no longer in-place, the newly edited channel is returned instead. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`ValueError` or :exc:`TypeError` in various cases. + This function will now raise :exc:`TypeError` or + :exc:`ValueError` instead of ``InvalidArgument``. Parameters ---------- @@ -1784,8 +1784,8 @@ class StoreChannel(discord.abc.GuildChannel, Hashable): Edits are no longer in-place, the newly edited channel is returned instead. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`ValueError` or :exc:`TypeError` in various cases. + This function will now raise :exc:`TypeError` or + :exc:`ValueError` instead of ``InvalidArgument``. Parameters ---------- diff --git a/discord/client.py b/discord/client.py index 0ae417f16..d7d6547d2 100644 --- a/discord/client.py +++ b/discord/client.py @@ -1125,8 +1125,8 @@ class Client: Removed the ``afk`` keyword-only parameter. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`TypeError`. + This function will now raise :exc:`TypeError` instead of + ``InvalidArgument``. Parameters ---------- @@ -1369,8 +1369,8 @@ class Client: ``name`` and ``icon`` parameters are now keyword-only. The `region`` parameter has been removed. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`ValueError`. + This function will now raise :exc:`ValueError` instead of + ``InvalidArgument``. Parameters ---------- diff --git a/discord/guild.py b/discord/guild.py index 97b2d1a73..bd2c1d93e 100644 --- a/discord/guild.py +++ b/discord/guild.py @@ -1207,8 +1207,8 @@ class Guild(Hashable): will be required to update the position of the channel in the channel list. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`TypeError`. + This function will now raise :exc:`TypeError` instead of + ``InvalidArgument``. Examples ---------- @@ -1310,8 +1310,8 @@ class Guild(Hashable): This is similar to :meth:`create_text_channel` except makes a :class:`VoiceChannel` instead. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`TypeError`. + This function will now raise :exc:`TypeError` instead of + ``InvalidArgument``. Parameters ----------- @@ -1400,8 +1400,8 @@ class Guild(Hashable): .. versionadded:: 1.7 .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`TypeError`. + This function will now raise :exc:`TypeError` instead of + ``InvalidArgument``. Parameters ----------- @@ -1471,8 +1471,8 @@ class Guild(Hashable): cannot have categories. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`TypeError`. + This function will now raise :exc:`TypeError` instead of + ``InvalidArgument``. Raises ------ @@ -1581,8 +1581,8 @@ class Guild(Hashable): The ``region`` keyword parameter has been removed. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`ValueError` or :exc:`TypeError` in various cases. + This function will now raise :exc:`TypeError` or + :exc:`ValueError` instead of ``InvalidArgument``. .. versionchanged:: 2.0 The ``preferred_locale`` keyword parameter now accepts an enum instead of :class:`str`. @@ -2086,8 +2086,8 @@ class Guild(Hashable): The ``roles`` keyword-only parameter was added. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`TypeError`. + This function will now raise :exc:`TypeError` instead of + ``InvalidArgument``. Parameters ----------- @@ -2191,8 +2191,8 @@ class Guild(Hashable): The returned value can be ``None``. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`TypeError`. + This function will now raise :exc:`TypeError` instead of + ``InvalidArgument``. Parameters ----------- @@ -2889,8 +2889,8 @@ class Guild(Hashable): The ``display_icon`` keyword-only parameter was added. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`TypeError`. + This function will now raise :exc:`TypeError` instead of + ``InvalidArgument``. Parameters ----------- @@ -2973,8 +2973,8 @@ class Guild(Hashable): .. versionadded:: 1.4 .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`TypeError`. + This function will now raise :exc:`TypeError` instead of + ``InvalidArgument``. Example ---------- diff --git a/discord/integrations.py b/discord/integrations.py index 384ff1b98..406b52633 100644 --- a/discord/integrations.py +++ b/discord/integrations.py @@ -232,8 +232,8 @@ class StreamIntegration(Integration): do this. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`TypeError`. + This function will now raise :exc:`TypeError` instead of + ``InvalidArgument``. Parameters ----------- diff --git a/discord/message.py b/discord/message.py index fb52e10e2..7832d2095 100644 --- a/discord/message.py +++ b/discord/message.py @@ -1240,8 +1240,8 @@ class Message(Hashable): Edits are no longer in-place, the newly edited message is returned instead. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`TypeError`. + This function will now raise :exc:`TypeError` instead of + ``InvalidArgument``. Parameters ----------- @@ -1479,8 +1479,8 @@ class Message(Hashable): ``emoji`` parameter is now positional-only. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`TypeError`. + This function will now raise :exc:`TypeError` instead of + ``InvalidArgument``. Parameters ------------ @@ -1516,8 +1516,8 @@ class Message(Hashable): the :class:`abc.Snowflake` abc. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`TypeError`. + This function will now raise :exc:`TypeError` instead of + ``InvalidArgument``. Parameters ------------ @@ -1557,8 +1557,8 @@ class Message(Hashable): .. versionadded:: 1.3 .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`TypeError`. + This function will now raise :exc:`TypeError` instead of + ``InvalidArgument``. Parameters ----------- @@ -1666,8 +1666,8 @@ class Message(Hashable): .. versionadded:: 1.6 .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`ValueError` or :exc:`TypeError` in various cases. + This function will now raise :exc:`TypeError` or + :exc:`ValueError` instead of ``InvalidArgument``. Raises -------- diff --git a/discord/reaction.py b/discord/reaction.py index 7d1440a07..128986385 100644 --- a/discord/reaction.py +++ b/discord/reaction.py @@ -149,8 +149,8 @@ class Reaction: .. versionadded:: 1.3 .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`ValueError`. + This function will now raise :exc:`ValueError` instead of + ``InvalidArgument``. Raises -------- diff --git a/discord/role.py b/discord/role.py index 9d1a39623..0a8f49627 100644 --- a/discord/role.py +++ b/discord/role.py @@ -411,8 +411,8 @@ class Role(Hashable): The ``display_icon`` keyword-only parameter was added. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`ValueError`. + This function will now raise :exc:`ValueError` instead of + ``InvalidArgument``. Parameters ----------- diff --git a/discord/shard.py b/discord/shard.py index 9093b9c56..aa37a2c54 100644 --- a/discord/shard.py +++ b/discord/shard.py @@ -494,8 +494,8 @@ class AutoShardedClient(Client): Removed the ``afk`` keyword-only parameter. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`TypeError`. + This function will now raise :exc:`TypeError` instead of + ``InvalidArgument``. Parameters ---------- diff --git a/discord/template.py b/discord/template.py index 490757ed0..02b7d2e10 100644 --- a/discord/template.py +++ b/discord/template.py @@ -178,8 +178,8 @@ class Template: The ``region`` parameter has been removed. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`ValueError`. + This function will now raise :exc:`ValueError` instead of + ``InvalidArgument``. Parameters ---------- diff --git a/discord/user.py b/discord/user.py index 2f58a39d5..e1bea60df 100644 --- a/discord/user.py +++ b/discord/user.py @@ -367,8 +367,8 @@ class ClientUser(BaseUser): The edit is no longer in-place, instead the newly edited client user is returned. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`ValueError`. + This function will now raise :exc:`ValueError` instead of + ``InvalidArgument``. Parameters ----------- diff --git a/discord/webhook/async_.py b/discord/webhook/async_.py index 991a5dfa1..6781bc036 100644 --- a/discord/webhook/async_.py +++ b/discord/webhook/async_.py @@ -670,8 +670,8 @@ class WebhookMessage(Message): The edit is no longer in-place, instead the newly edited message is returned. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`ValueError`. + This function will now raise :exc:`ValueError` instead of + ``InvalidArgument``. Parameters ------------ @@ -1063,8 +1063,8 @@ class Webhook(BaseWebhook): """Creates a partial :class:`Webhook` from a webhook URL. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`ValueError`. + This function will now raise :exc:`ValueError` instead of + ``InvalidArgument``. Parameters ------------ @@ -1220,8 +1220,8 @@ class Webhook(BaseWebhook): Edits this Webhook. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`ValueError`. + This function will now raise :exc:`ValueError` instead of + ``~InvalidArgument``. Parameters ------------ @@ -1367,8 +1367,8 @@ class Webhook(BaseWebhook): ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`ValueError`. + This function will now raise :exc:`ValueError` instead of + ``InvalidArgument``. Parameters ------------ @@ -1579,8 +1579,8 @@ class Webhook(BaseWebhook): The edit is no longer in-place, instead the newly edited message is returned. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`ValueError`. + This function will now raise :exc:`ValueError` instead of + ``InvalidArgument``. Parameters ------------ @@ -1677,8 +1677,8 @@ class Webhook(BaseWebhook): ``message_id`` parameter is now positional-only. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`ValueError`. + This function will now raise :exc:`ValueError` instead of + ``InvalidArgument``. Parameters ------------ diff --git a/discord/webhook/sync.py b/discord/webhook/sync.py index 9a0713a0a..ff3983136 100644 --- a/discord/webhook/sync.py +++ b/discord/webhook/sync.py @@ -388,8 +388,8 @@ class SyncWebhookMessage(Message): """Edits the message. .. versionchanged:: 2.0 - This function no-longer raises ``InvalidArgument`` instead raising - :exc:`ValueError` or :exc:`TypeError` in various cases. + This function will now raise :exc:`TypeError` or + :exc:`ValueError` instead of ``InvalidArgument``. Parameters ------------