From 0d8e31e15a39e86033a25a7165fcbcc84a74ad37 Mon Sep 17 00:00:00 2001 From: Luca Salvarani Date: Wed, 31 Jan 2024 00:45:37 +0100 Subject: [PATCH] feat(stdlib): Add `enumerate` to `__all__` --- src/polyfills/stdlib/functions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/polyfills/stdlib/functions.py b/src/polyfills/stdlib/functions.py index d3dec29..7023acd 100644 --- a/src/polyfills/stdlib/functions.py +++ b/src/polyfills/stdlib/functions.py @@ -11,6 +11,7 @@ __all__ = [ "sum", "sorted", + "enumerate", ] def enumerate(__iterable, start=0):