From dc000273619edd3c19e62c383677b45818d56365 Mon Sep 17 00:00:00 2001 From: Paul Tagliamonte Date: Tue, 18 Dec 2012 23:11:42 -0500 Subject: [PATCH] removing the lex thing --- bin/hy-lex-json | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100755 bin/hy-lex-json diff --git a/bin/hy-lex-json b/bin/hy-lex-json deleted file mode 100755 index f311a65..0000000 --- a/bin/hy-lex-json +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env python - -from hy.lex.tokenize import tokenize -import json -import sys - - -print json.dumps( - tokenize(open(sys.argv[1], 'r').read()), - indent=4, - sort_keys=True -)