changeset 183:4fd075e8259c

Removed invalid imports
author Windel Bouwman
date Sat, 18 May 2013 18:30:26 +0200
parents e9b27f7193e3
children fe2b72381a83
files python/ks/irgenerator.py python/ks/lexer.py python/ks/parser.py
diffstat 3 files changed, 0 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/python/ks/irgenerator.py	Sat May 18 18:24:42 2013 +0200
+++ b/python/ks/irgenerator.py	Sat May 18 18:30:26 2013 +0200
@@ -3,8 +3,6 @@
 """
 
 from .nodes import *
-from ...core.errors import Error
-from ... import core
 from .builtin import real, integer, boolean, char, void
 
 def coreType(typ):
--- a/python/ks/lexer.py	Sat May 18 18:24:42 2013 +0200
+++ b/python/ks/lexer.py	Sat May 18 18:30:26 2013 +0200
@@ -1,5 +1,4 @@
 import collections, re
-from ...core.errors import CompilerException
 
 """
  Lexical analyzer part. Splits the input character stream into tokens.
--- a/python/ks/parser.py	Sat May 18 18:24:42 2013 +0200
+++ b/python/ks/parser.py	Sat May 18 18:30:26 2013 +0200
@@ -1,6 +1,5 @@
 from .symboltable import SymbolTable
 from .nodes import *
-from ...core.errors import CompilerException, Error
 from .builtin import *
 from .lexer import tokenize