[go: up one dir, main page]

pyo3 0.16.3

Bindings to Python interpreter
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![cfg(feature = "macros")]

//! Functionality which is not only not supported on MSRV,
//! but can't even be cfg-ed out on MSRV because the compiler doesn't support
//! the syntax.

#[rustversion::since(1.54)]
mod requires_1_54 {

    include!("not_msrv/requires_1_54.rs");
}