Browse Source

Adjustments

tags/gm/2021-09-23T00Z/github.com--lark-parser-lark/0.10.0
Erez Sh 4 years ago
parent
commit
afebbf7348
2 changed files with 1 additions and 3 deletions
  1. +0
    -2
      examples/json_parser.py
  2. +1
    -1
      examples/lark_grammar.py

+ 0
- 2
examples/json_parser.py View File

@@ -2,8 +2,6 @@
Simple JSON Parser Simple JSON Parser
================== ==================


A simple JSON parser (comes with a tutorial, see docs)

The code is short and clear, and outperforms every other parser (that's written in Python). The code is short and clear, and outperforms every other parser (that's written in Python).
For an explanation, check out the JSON parser tutorial at /docs/json_tutorial.md For an explanation, check out the JSON parser tutorial at /docs/json_tutorial.md
""" """


+ 1
- 1
examples/lark_grammar.py View File

@@ -2,7 +2,7 @@
Lark Grammar Lark Grammar
============ ============


A reference implementation of the Lark grammar (using LALR(1) + standard lexer)
A reference implementation of the Lark grammar (using LALR(1))
""" """
from lark import Lark from lark import Lark




Loading…
Cancel
Save