commit: 86a1a173e7d8d33fbbf25b4d381b660923f55823
Author: Brian Harring <ferringb <AT> gmail <DOT> com>
AuthorDate: Fri Nov 28 20:34:01 2025 +0000
Commit: Brian Harring <ferringb <AT> gmail <DOT> com>
CommitDate: Fri Nov 28 22:32:35 2025 +0000
URL:
https://gitweb.gentoo.org/proj/pkgcore/snakeoil.git/commit/?id=86a1a173
chore: itertools.expandable_chain is now slotted
Signed-off-by: Brian Harring <ferringb <AT> gmail.com>
src/snakeoil/iterables.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/snakeoil/iterables.py b/src/snakeoil/iterables.py
index 7176a2b..d8604e5 100644
--- a/src/snakeoil/iterables.py
+++ b/src/snakeoil/iterables.py
@@ -44,7 +44,7 @@ class expandable_chain:
2
"""
- __slot__ = ("iterables", "__weakref__")
+ __slots__ = ("iterables", "__weakref__")
def __init__(self, *iterables):
"""