rustpython-doc 0.5.0

Python __doc__ database for RustPython
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![no_std]

include!("./data.inc.rs");

#[cfg(test)]
mod test {
    use super::DB;

    #[test]
    fn test_db() {
        let doc = DB.get("array._array_reconstructor");
        assert!(doc.is_some());
    }
}