Sha256: 445d133b11bc224e992d4fe8434749ab1291d12641ff3b63aec6c2feb9398a03

Contents?: true

Size: 284 Bytes

Versions: 8

Compression:

Stored size: 284 Bytes

Contents

# lex_re1.py
#
# Bad regular expression in a string

import sys
if ".." not in sys.path: sys.path.insert(0,"..")

import ply.lex as lex

tokens = [
    "PLUS",
    "MINUS",
    "NUMBER",
    ]

t_PLUS = r'\+'
t_MINUS = r'-'
t_NUMBER = r'(\d+'

def t_error(t):
    pass



lex.lex()


Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
webruby-0.2.7 modules/emscripten/third_party/ply/test/lex_re1.py
webruby-0.2.5 modules/emscripten/third_party/ply/test/lex_re1.py
webruby-0.2.4 modules/emscripten/third_party/ply/test/lex_re1.py
webruby-0.2.2 modules/emscripten/third_party/ply/test/lex_re1.py
webruby-0.2.1 modules/emscripten/third_party/ply/test/lex_re1.py
webruby-0.1.2 modules/emscripten/third_party/ply/test/lex_re1.py
webruby-0.1.1 modules/emscripten/third_party/ply/test/lex_re1.py
webruby-0.1.0 modules/emscripten/third_party/ply/test/lex_re1.py