Mercurial > lcfOS
comparison python/ppci/frontends/ks/lexer.py @ 101:af0d7913677a
Fixes and splitting into 3 stage
author | windel |
---|---|
date | Mon, 24 Dec 2012 17:55:08 +0100 |
parents | 3f772feb12ef |
children |
comparison
equal
deleted
inserted
replaced
100:fe145e42259d | 101:af0d7913677a |
---|---|
1 import collections | 1 import collections, re |
2 import re | 2 from ...core.errors import CompilerException |
3 from .errors import CompilerException | |
4 | 3 |
5 """ | 4 """ |
6 Lexical analyzer part. Splits the input character stream into tokens. | 5 Lexical analyzer part. Splits the input character stream into tokens. |
7 """ | 6 """ |
8 | 7 |