Merge pull request #3661 from djrmarques/main

Changed the drain into into_iter on types.rs
This commit is contained in:
Jeong YunWon
2022-04-26 15:49:29 +09:00
committed by GitHub

View File

@@ -267,7 +267,7 @@ impl PyType {
fn dir(zelf: PyRef<Self>, vm: &VirtualMachine) -> PyList {
let attributes: Vec<PyObjectRef> = zelf
.get_attributes()
.drain(..)
.into_iter()
.map(|(k, _)| vm.ctx.new_str(k).into())
.collect();
PyList::from(attributes)