From ba6d09f9569d10225487522044e219033bcd6328 Mon Sep 17 00:00:00 2001 From: Simon Forman Date: Tue, 22 Mar 2022 07:59:11 -0700 Subject: [PATCH] Remove parse, no strings in base library. References: https://todo.sr.ht/~sforman/Xerblin/10 --- implementations/Python/joy/library.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/implementations/Python/joy/library.py b/implementations/Python/joy/library.py index 61e1e45..5094068 100644 --- a/implementations/Python/joy/library.py +++ b/implementations/Python/joy/library.py @@ -227,15 +227,6 @@ def inscribe_(stack, expression, dictionary): return stack, expression, dictionary -@inscribe -@SimpleFunctionWrapper -def parse(stack): - '''Parse the string on the stack to a Joy expression.''' - text, stack = stack - expression = text_to_expression(text) - return expression, stack - - # @inscribe # @SimpleFunctionWrapper # def infer_(stack):