From 23d2acc10b4919819f7aff4e8ada5e5a46583159 Mon Sep 17 00:00:00 2001 From: DSPOM Date: Tue, 25 Jan 2022 20:25:55 +0100 Subject: [PATCH] fix: remove excess argument for `_PyCFunctionFast` --- pyo3-ffi/src/methodobject.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/pyo3-ffi/src/methodobject.rs b/pyo3-ffi/src/methodobject.rs index af027407f2c..6212090febb 100644 --- a/pyo3-ffi/src/methodobject.rs +++ b/pyo3-ffi/src/methodobject.rs @@ -36,7 +36,6 @@ pub type _PyCFunctionFast = unsafe extern "C" fn( slf: *mut PyObject, args: *mut *mut PyObject, nargs: crate::pyport::Py_ssize_t, - kwnames: *mut PyObject, ) -> *mut PyObject; pub type PyCFunctionWithKeywords = unsafe extern "C" fn(