pyo3 0.14.2

Bindings to Python interpreter
Documentation
//! Symbols used to denote deprecated usages of PyO3's proc macros.

#[deprecated(
    since = "0.14.0",
    note = "use `#[pyo3(name = \"...\")]` instead of `#[name = \"...\"]`"
)]
pub const NAME_ATTRIBUTE: () = ();

#[deprecated(
    since = "0.14.0",
    note = "use `#[pyfn(m)] #[pyo3(name = \"...\")]` instead of `#[pyfn(m, \"...\")]`"
)]
pub const PYFN_NAME_ARGUMENT: () = ();

#[deprecated(
    since = "0.14.0",
    note = "use `#[pymodule] #[pyo3(name = \"...\")]` instead of `#[pymodule(...)]`"
)]
pub const PYMODULE_NAME_ARGUMENT: () = ();

#[deprecated(
    since = "0.14.0",
    note = "use `#[pyo3(text_signature = \"...\")]` instead of `#[text_signature = \"...\"]`"
)]
pub const TEXT_SIGNATURE_ATTRIBUTE: () = ();