From 01906f37f18b5db838dea8ff007e8d08e47c6aa9 Mon Sep 17 00:00:00 2001 From: James Hilton-Balfe Date: Sun, 6 Mar 2022 23:44:18 +0000 Subject: [PATCH] Remove NoMoreItems --- discord/errors.py | 7 ------- docs/api.rst | 3 --- docs/migrating.rst | 3 +++ 3 files changed, 3 insertions(+), 10 deletions(-) diff --git a/discord/errors.py b/discord/errors.py index 1e262d4a2..5cbc53345 100644 --- a/discord/errors.py +++ b/discord/errors.py @@ -40,7 +40,6 @@ if TYPE_CHECKING: __all__ = ( 'DiscordException', 'ClientException', - 'NoMoreItems', 'GatewayNotFound', 'HTTPException', 'Forbidden', @@ -72,12 +71,6 @@ class ClientException(DiscordException): pass -class NoMoreItems(DiscordException): - """Exception that is raised when an async iteration operation has no more items.""" - - pass - - class GatewayNotFound(DiscordException): """An exception that is raised when the gateway for Discord could not be found""" diff --git a/docs/api.rst b/docs/api.rst index a80547872..30f6ff54d 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -4053,8 +4053,6 @@ The following exceptions are thrown by the library. .. autoexception:: LoginFailure -.. autoexception:: NoMoreItems - .. autoexception:: HTTPException :members: @@ -4091,7 +4089,6 @@ Exception Hierarchy - :exc:`ConnectionClosed` - :exc:`PrivilegedIntentsRequired` - :exc:`InteractionResponded` - - :exc:`NoMoreItems` - :exc:`GatewayNotFound` - :exc:`HTTPException` - :exc:`Forbidden` diff --git a/docs/migrating.rst b/docs/migrating.rst index df9f01361..87757aab8 100644 --- a/docs/migrating.rst +++ b/docs/migrating.rst @@ -791,6 +791,9 @@ The return type of the following methods has been changed to an :term:`asynchron - :meth:`Guild.fetch_members` - :meth:`Reaction.users` +The ``NoMoreItems`` exception was removed as calling :func:`anext` or :meth:`~object.__anext__` on an +:term:`asynchronous iterator` will now raise :class:`StopAsyncIteration`. + Removal of ``InvalidArgument`` Exception -------------------------------------------