mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-23 01:10:27 +00:00
8 lines
164 B
Python
8 lines
164 B
Python
|
|
import PyLR
|
||
|
|
|
||
|
|
class SimpleLexer(PyLR.Lexer):
|
||
|
|
def __init__(self):
|
||
|
|
PyLR.Lexer.__init__(self)
|
||
|
|
self.addpat(r"c", "c")
|
||
|
|
self.addpat(r"d", "d")
|