From 071c31f14050f8111ad97e9a71ec9a3facde9a2e Mon Sep 17 00:00:00 2001 From: mejrs Date: Thu, 24 Feb 2022 13:46:59 +0100 Subject: [PATCH] Undo rename --- src/pyclass.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pyclass.rs b/src/pyclass.rs index 68534bfd..a3277295 100644 --- a/src/pyclass.rs +++ b/src/pyclass.rs @@ -218,7 +218,7 @@ fn type_object_creation_failed(py: Python, e: PyErr, name: &'static str) -> ! { /// Additional type initializations necessary before Python 3.10 #[cfg(all(not(Py_LIMITED_API), not(Py_3_10)))] unsafe fn tp_init_additional( - _type_object: *mut ffi::PyTypeObject, + type_object: *mut ffi::PyTypeObject, _tp_doc: &str, #[cfg(not(Py_3_9))] buffer_procs: &ffi::PyBufferProcs, #[cfg(not(Py_3_9))] dict_offset: Option, @@ -236,10 +236,10 @@ unsafe fn tp_init_additional( // heap-types, and it removed the text_signature value from it. // We go in after the fact and replace tp_doc with something // that _does_ include the text_signature value! - ffi::PyObject_Free((*_type_object).tp_doc as _); + ffi::PyObject_Free((*type_object).tp_doc as _); let data = ffi::PyObject_Malloc(_tp_doc.len()); data.copy_from(_tp_doc.as_ptr() as _, _tp_doc.len()); - (*_type_object).tp_doc = data as _; + (*type_object).tp_doc = data as _; } }