Sha256: 937fe4ff7bfea182c003a5d52924404d63634842a0b22d0e195f4f3bb9520d36

Contents?: true

Size: 272 Bytes

Versions: 8

Compression:

Stored size: 272 Bytes

Contents

# lex_literal1.py
#
# Bad literal specification

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

import ply.lex as lex

tokens = [
    "NUMBER",
    ]

literals = ["+","-","**"]

def t_NUMBER(t):
    r'\d+'
    return t

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_literal1.py
webruby-0.2.5 modules/emscripten/third_party/ply/test/lex_literal1.py
webruby-0.2.4 modules/emscripten/third_party/ply/test/lex_literal1.py
webruby-0.2.2 modules/emscripten/third_party/ply/test/lex_literal1.py
webruby-0.2.1 modules/emscripten/third_party/ply/test/lex_literal1.py
webruby-0.1.2 modules/emscripten/third_party/ply/test/lex_literal1.py
webruby-0.1.1 modules/emscripten/third_party/ply/test/lex_literal1.py
webruby-0.1.0 modules/emscripten/third_party/ply/test/lex_literal1.py