1 | //! Symbols used to denote deprecated usages of PyO3's proc macros. |
---|---|
2 | |
3 | #[deprecated( |
4 | since = "0.19.0", |
5 | note = "put `text_signature` on `#[new]` instead of `#[pyclass]`" |
6 | )] |
7 | pub const PYCLASS_TEXT_SIGNATURE: () = (); |
8 | |
9 | #[deprecated(since = "0.20.0", note = "use `#[new]` instead of `#[__new__]`")] |
10 | pub const PYMETHODS_NEW_DEPRECATED_FORM: () = (); |
11 |