From 5cc96a0fb06fa7d86563f4cb64e5fa9d4f6a09f9 Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Mon, 13 Nov 2017 01:00:33 -0500 Subject: Big-ass coding binge presents: a Lisp. This implements a continuation-passing interpreter, which means we get tail calls ferfree. I stopped short of implementing call/cc, because I don't think we need it, but we can get there if we have to. --- tests/test_tokenizer.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'tests/test_tokenizer.py') diff --git a/tests/test_tokenizer.py b/tests/test_tokenizer.py index 5c0ddea..7e5c7b3 100644 --- a/tests/test_tokenizer.py +++ b/tests/test_tokenizer.py @@ -1,6 +1,4 @@ -from hypothesis import given, settings, HealthCheck, event -from hypothesis.strategies import just, text, characters, from_regex, one_of, tuples, sampled_from -import io +from hypothesis import given from actinide.tokenizer import * from actinide.ports import * -- cgit v1.2.3