Skip to main content

Crate sdivi_lang_python

Crate sdivi_lang_python 

Source
Expand description

Python language adapter for sdivi-rust.

Implements sdivi_parsing::adapter::LanguageAdapter for .py source files using the tree-sitter-python grammar.

§Thread safety

tree_sitter::Parser is not Send. Parsers are stored in thread_local! storage so that PythonAdapter itself can be Send + Sync and participate in rayon parallel parsing.

Structs§

PythonAdapter
Language adapter for Python source files.