From 92b9ab301073b0b09c7a95927d2b715f9ee7411c Mon Sep 17 00:00:00 2001 From: Jonathan Plasse <13716151+JonathanPlasse@users.noreply.github.com> Date: Wed, 7 Dec 2022 15:20:06 +0100 Subject: [PATCH] Add aiter() and anext() to BUILTINS (#1118) --- src/python/builtins.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/python/builtins.rs b/src/python/builtins.rs index 48a338c31d..497e3fb281 100644 --- a/src/python/builtins.rs +++ b/src/python/builtins.rs @@ -79,7 +79,9 @@ pub const BUILTINS: &[&str] = &[ "__package__", "__spec__", "abs", + "aiter", "all", + "anext", "any", "ascii", "bin",