Skip to content

Commit

Permalink
Merge pull request #368 from hroncok/python3.13
Browse files Browse the repository at this point in the history
Fix build with Python 3.13+ caused by Python removal of deprecated function
  • Loading branch information
jnwatson authored Jan 4, 2025
2 parents 7d9dfdf + 206a375 commit 5cf07a3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions lmdb/cpython.c
Original file line number Diff line number Diff line change
Expand Up @@ -545,9 +545,21 @@ val_from_buffer(MDB_val *val, PyObject *buf)
type_error("Won't implicitly convert Unicode to bytes; use .encode()");
return -1;
}
#if PY_VERSION_HEX < 0x030d0000
return PyObject_AsReadBuffer(buf,
(const void **) &val->mv_data,
(Py_ssize_t *) &val->mv_size);
#else
Py_buffer view;
int ret;
ret = PyObject_GetBuffer(buf, &view, PyBUF_SIMPLE);
if(ret == 0) {
val->mv_data = view.buf;
val->mv_size = view.len;
PyBuffer_Release(&view);
}
return ret;
#endif
}

/* ------------------- */
Expand Down

0 comments on commit 5cf07a3

Please sign in to comment.