We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c049dd2 commit f019d93Copy full SHA for f019d93
1 file changed
Modules/_base64/src/lib.rs
@@ -115,7 +115,6 @@ impl Drop for BorrowedBuffer {
115
/// # Safety
116
/// `module` must be a valid pointer of PyObject representing the module.
117
/// `args` must be a valid pointer to an array of valid PyObject pointers with length `nargs`.
118
-#[unsafe(no_mangle)]
119
pub unsafe extern "C" fn standard_b64encode(
120
_module: *mut PyObject,
121
args: *mut *mut PyObject,
@@ -193,13 +192,11 @@ fn standard_b64encode_impl(source: &PyObject) -> Result<*mut PyObject, ()> {
193
192
Ok(result)
194
}
195
196
197
pub extern "C" fn _base64_clear(_obj: *mut PyObject) -> c_int {
198
//TODO
199
0
200
201
202
203
pub extern "C" fn _base64_free(_o: *mut c_void) {
204
205
0 commit comments