From 4821ea0ee23c4fa13956e621177ce85a069a8a96 Mon Sep 17 00:00:00 2001 From: sforman Date: Sun, 8 Oct 2023 13:08:34 -0700 Subject: [PATCH] Take the right number of things off of the stack. --- implementations/Python/joy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/implementations/Python/joy.py b/implementations/Python/joy.py index bcf3080..a8ddccf 100644 --- a/implementations/Python/joy.py +++ b/implementations/Python/joy.py @@ -2033,7 +2033,7 @@ def dipdd(stack, expr, dictionary): ... Q y x z ''' - quote, x, y, z, stack = get_n_items(3, stack) + quote, x, y, z, stack = get_n_items(4, stack) isnt_stack(quote) expr = push_quote((z, (y, (x, ()))), expr) expr = push_quote(quote, expr)