mirror of
https://github.com/RustPython/Parser.git
synced 2025-07-23 13:06:07 +00:00
Update other stuff to use the root of rustpython_bytecode
This commit is contained in:
parent
b9875ff9bf
commit
db041c0f6c
2 changed files with 3 additions and 3 deletions
|
@ -13,7 +13,7 @@ use itertools::Itertools;
|
|||
use num_complex::Complex64;
|
||||
use num_traits::ToPrimitive;
|
||||
use rustpython_ast as ast;
|
||||
use rustpython_bytecode::bytecode::{self, CodeObject, ConstantData, Instruction, Label};
|
||||
use rustpython_bytecode::{self as bytecode, CodeObject, ConstantData, Instruction, Label};
|
||||
|
||||
type CompileResult<T> = Result<T, CompileError>;
|
||||
|
||||
|
@ -2548,7 +2548,7 @@ fn compile_conversion_flag(
|
|||
mod tests {
|
||||
use super::{CompileOpts, Compiler};
|
||||
use crate::symboltable::make_symbol_table;
|
||||
use rustpython_bytecode::bytecode::CodeObject;
|
||||
use rustpython_bytecode::CodeObject;
|
||||
use rustpython_parser::parser;
|
||||
|
||||
fn compile_exec(source: &str) -> CodeObject {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue