Browse Source

Make LarkError public.

tags/gm/2021-09-23T00Z/github.com--lark-parser-lark/0.8.2
KmolYuan 5 years ago
parent
commit
97afea24d1
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      lark/__init__.py

+ 2
- 1
lark/__init__.py View File

@@ -1,7 +1,8 @@
from .tree import Tree
from .visitors import Transformer, Visitor, v_args, Discard
from .visitors import InlineTransformer, inline_args # XXX Deprecated
from .exceptions import ParseError, LexError, GrammarError, UnexpectedToken, UnexpectedInput, UnexpectedCharacters
from .exceptions import (ParseError, LexError, GrammarError, UnexpectedToken,
UnexpectedInput, UnexpectedCharacters, LarkError)
from .lexer import Token
from .lark import Lark



Loading…
Cancel
Save