1#![feature(new_range_api)]
2#![doc = include_str!("../readme.md")]
3
4pub mod ast;
5pub mod builder;
6pub mod errors;
7pub mod frontend;
8pub mod highlighter;
9pub mod kind;
10pub mod language;
11pub mod lexer;
12pub mod lsp;
13pub mod mcp;
14pub mod parser;
15
16pub use crate::{ast::PythonRoot, builder::PythonBuilder, frontend::PythonFrontend, highlighter::PythonHighlighter, kind::PythonSyntaxKind, language::PythonLanguage, lexer::PythonLexer, lsp::PythonLanguageService, parser::PythonParser};
18
19pub use crate::mcp::serve_python_mcp;