PyObject -> pyo3::PyObject

This commit is contained in:
Toru Ogawa 2020-08-04 20:27:29 +09:00
parent a877300f72
commit 668e5e9d1f
1 changed files with 1 additions and 1 deletions

View File

@ -374,7 +374,7 @@ fn impl_class(
// If #cls is not extended type, we allow Self->PyObject conversion
let into_pyobject = if !attr.has_extends {
quote! {
impl pyo3::IntoPy<PyObject> for #cls {
impl pyo3::IntoPy<pyo3::PyObject> for #cls {
fn into_py(self, py: pyo3::Python) -> pyo3::PyObject {
pyo3::IntoPy::into_py(pyo3::Py::new(py, self).unwrap(), py)
}