From: Simon Forman Date: Tue, 22 Mar 2022 14:59:11 +0000 (-0700) Subject: Remove parse, no strings in base library. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=ba6d09f9569d10225487522044e219033bcd6328;p=joypy%2FThun.git Remove parse, no strings in base library. References: https://todo.sr.ht/~sforman/Xerblin/10 --- 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):