Merge pull request #399 from s3bk/master
Remove T: ToPyObject requirement for the IntoPyObject impl of Vec<T> #398
This commit is contained in:
commit
5a421fcdc7
|
@ -191,7 +191,7 @@ where
|
|||
|
||||
impl<T> IntoPyObject for Vec<T>
|
||||
where
|
||||
T: IntoPyObject + ToPyObject,
|
||||
T: IntoPyObject,
|
||||
{
|
||||
fn into_object(self, py: Python) -> PyObject {
|
||||
unsafe {
|
||||
|
|
Loading…
Reference in a new issue