Skip to content

Commit ca1653c

Browse files
committed
Apply @davidhewitt's suggestion
1 parent c913efc commit ca1653c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyo3-ffi/src/compat.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ use crate::object::PyObject;
1414
#[cfg(not(Py_3_13))]
1515
use std::os::raw::c_int;
1616

17-
#[cfg_attr(docsrs, doc(cfg(Py_3_13)))]
17+
#[cfg_attr(docsrs, doc(cfg(all)))]
1818
#[cfg(Py_3_13)]
1919
pub use crate::dictobject::PyDict_GetItemRef;
2020

21-
#[cfg_attr(docsrs, doc(cfg(not(Py_3_13))))]
21+
#[cfg_attr(docsrs, doc(cfg(all)))]
2222
#[cfg(not(Py_3_13))]
2323
pub unsafe fn PyDict_GetItemRef(
2424
dp: *mut PyObject,

0 commit comments

Comments
 (0)