You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# `__doc__` for [RustPython](https://rustpython.github.io/)
4
+
5
+
This is the `__doc__` attributes generator for objects written in RustPython.
6
+
7
+
It's composed of two parts of:
8
+
9
+
- the `generate_docs.py` script that extracts the `__doc__` attributes from CPython to `docs.inc.rs`
10
+
- the `rustpython-doc` rust crate that uses the `docs.inc.rs` file to create a documentation Database.
11
+
12
+
This documentation database is then used by macros `pymodule` and `pyclass` macros of the rustpython-derive crate to automatically add the `__doc__` attribute.
13
+
14
+
The `docs.inc.rs` database file can be generated with
0 commit comments