Move PyRef to pyobject module

This commit is contained in:
Joey Hain
2019-03-10 12:17:50 -07:00
parent 8143adc837
commit 45bc8c8f7a
15 changed files with 138 additions and 158 deletions

View File

@@ -2,10 +2,9 @@ use super::objbytes;
use super::objint;
use super::objstr;
use super::objtype;
use crate::function::PyRef;
use crate::pyobject::{
IntoPyObject, PyContext, PyObject, PyObjectPayload, PyObjectPayload2, PyObjectRef, PyResult,
TypeProtocol,
IntoPyObject, PyContext, PyObject, PyObjectPayload, PyObjectPayload2, PyObjectRef, PyRef,
PyResult, TypeProtocol,
};
use crate::vm::VirtualMachine;
use num_bigint::ToBigInt;