Move PyIteratorValue to objiter.rs

This commit is contained in:
Adrian Wielgosik
2019-04-01 19:42:30 +02:00
parent cba8aa9be5
commit bbfca26b27
8 changed files with 32 additions and 28 deletions

View File

@@ -6,10 +6,11 @@ use std::ops::Deref;
use num_traits::ToPrimitive;
use crate::function::OptionalArg;
use crate::pyobject::{PyContext, PyIteratorValue, PyObjectRef, PyRef, PyResult, PyValue};
use crate::pyobject::{PyContext, PyObjectRef, PyRef, PyResult, PyValue};
use crate::vm::VirtualMachine;
use super::objint;
use super::objiter::PyIteratorValue;
use super::objtype::PyClassRef;
#[derive(Debug)]