From ff24c5229e431d9e88db1cc6737120184f5d3c07 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Wed, 30 Mar 2022 21:45:30 -0400 Subject: [PATCH] Add iterator special method for Namespace Fix #7812 --- discord/app_commands/namespace.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/discord/app_commands/namespace.py b/discord/app_commands/namespace.py index f1cfec0a9..489833f9c 100644 --- a/discord/app_commands/namespace.py +++ b/discord/app_commands/namespace.py @@ -24,7 +24,7 @@ DEALINGS IN THE SOFTWARE. from __future__ import annotations -from typing import TYPE_CHECKING, Any, Dict, Iterable, List, NamedTuple, Tuple +from typing import TYPE_CHECKING, Any, Dict, Iterable, Iterator, List, NamedTuple, Tuple from ..member import Member from ..object import Object from ..role import Role @@ -88,6 +88,10 @@ class Namespace: .. describe:: key in x Checks if the attribute is in the namespace. + .. describe:: iter(x) + + Returns an iterator of ``(name, value)`` pairs. This allows it + to be, for example, constructed as a dict or a list of pairs. This namespace object converts resolved objects into their appropriate form depending on their type. Consult the table below for conversion information. @@ -238,6 +242,9 @@ class Namespace: def __getattr__(self, attr: str) -> Any: return None + def __iter__(self) -> Iterator[Tuple[str, Any]]: + yield from self.__dict__.items() + def _update_with_defaults(self, defaults: Iterable[Tuple[str, Any]]) -> None: for key, value in defaults: self.__dict__.setdefault(key, value)