pydocstring 0.1.12

A zero-dependency Rust parser for Python docstrings (Google and NumPy styles) with a unified syntax tree and byte-precise source locations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Plain docstring style.
//!
//! "Plain" covers docstrings that contain no NumPy or Google style section
//! markers — i.e. a summary, an optional extended summary, and nothing else.
//! Unrecognised styles such as Sphinx are also treated as plain.

pub mod nodes;
pub mod parser;
pub mod to_model;

pub use nodes::PlainDocstring;
pub use parser::parse_plain;