forked from Rust-related/RustPython
Merge pull request #3661 from djrmarques/main
Changed the drain into into_iter on types.rs
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user