Skip to content

Commit

Permalink
Apply @davidhewitt's suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
ngoldbaum committed Jul 30, 2024
1 parent e34f076 commit 120ab18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyo3-ffi/src/compat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ use crate::object::PyObject;
#[cfg(not(Py_3_13))]
use std::os::raw::c_int;

#[cfg_attr(docsrs, doc(cfg(Py_3_13)))]
#[cfg_attr(docsrs, doc(cfg(all)))]
#[cfg(Py_3_13)]
pub use crate::dictobject::PyDict_GetItemRef;

#[cfg_attr(docsrs, doc(cfg(not(Py_3_13))))]
#[cfg_attr(docsrs, doc(cfg(all)))]
#[cfg(not(Py_3_13))]
pub unsafe fn PyDict_GetItemRef(
dp: *mut PyObject,
Expand Down

0 comments on commit 120ab18

Please sign in to comment.