Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update lexer_state to lexer_thread to avoid deprecation warnings #1285

Merged
merged 1 commit into from
Jun 10, 2023

Conversation

geographika
Copy link
Contributor

When running pytest on modules that depend on Lark I'm getting 100s of deprecation warnings:

lib\site-packages\lark\parsers\lalr_interactive_parser.py:27: DeprecationWarning: lexer_state will be removed in subsequent releases. Use lexer_thread instead.
    warnings.warn("lexer_state will be removed in subsequent releases. Use lexer_thread instead.", DeprecationWarning)

Raised at:

warnings.warn("lexer_state will be removed in subsequent releases. Use lexer_thread instead.", DeprecationWarning)

These appear to come from the use of lexer_state within Lark. Updating to lexer_thread in resume_parse removes these errors.

@erezsh erezsh merged commit f79bbac into lark-parser:master Jun 10, 2023
@erezsh
Copy link
Member

erezsh commented Jun 10, 2023

Great, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants