# HG changeset patch # User Windel Bouwman # Date 1368894626 -7200 # Node ID 4fd075e8259c873bd8919f3d77c820e913234055 # Parent e9b27f7193e3085ec91ede2e2e23d609cf842e90 Removed invalid imports diff -r e9b27f7193e3 -r 4fd075e8259c python/ks/irgenerator.py --- 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): diff -r e9b27f7193e3 -r 4fd075e8259c python/ks/lexer.py --- 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. diff -r e9b27f7193e3 -r 4fd075e8259c python/ks/parser.py --- 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