fix: remove "track_caller" cfg check (#3951)
This "cfg" value does not seem to exist (any more?), and #[track_caller] is used a lot elsewhere without cfg_attr. Found using cargo check -Zcheck-cfg.
This commit is contained in:
parent
93323bc922
commit
a7fa1bdf22
|
@ -485,7 +485,7 @@ impl PyErr {
|
||||||
///
|
///
|
||||||
/// Use this function when the error is expected to have been set, for example from
|
/// Use this function when the error is expected to have been set, for example from
|
||||||
/// [PyErr::occurred] or by an error return value from a C FFI function.
|
/// [PyErr::occurred] or by an error return value from a C FFI function.
|
||||||
#[cfg_attr(all(debug_assertions, track_caller), track_caller)]
|
#[cfg_attr(debug_assertions, track_caller)]
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn fetch(py: Python<'_>) -> PyErr {
|
pub fn fetch(py: Python<'_>) -> PyErr {
|
||||||
const FAILED_TO_FETCH: &str = "attempted to fetch exception but none was set";
|
const FAILED_TO_FETCH: &str = "attempted to fetch exception but none was set";
|
||||||
|
|
Loading…
Reference in New Issue