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):