Skip to content

Commit 128a7a8

Browse files
authored
Fix syntax error in configuration attribute
1 parent b1f925d commit 128a7a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyo3-ffi/src/cpython/abstract_.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ pub unsafe fn PySequence_FAST_GET_SIZE(o: *mut PyObject) -> Py_ssize_t {
299299
}
300300
}
301301

302-
#[cfg(not(PyPy)]
302+
#[cfg(not(PyPy))]
303303
#[inline(always)]
304304
pub unsafe fn PySequence_FAST_GET_ITEM(o: *mut PyObject, i: Py_ssize_t) -> *mut PyObject {
305305
let is_list = PyList_Check(o) != 0;

0 commit comments

Comments
 (0)