mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-29 12:24:45 +00:00
Support Python 3.8.10
This commit is contained in:
parent
3eb6393773
commit
7fdaae85c7
3 changed files with 3 additions and 3 deletions
|
@ -14,8 +14,8 @@ pub mod help_messages;
|
|||
pub mod levenshtein;
|
||||
pub mod macros;
|
||||
pub mod opcode;
|
||||
pub mod opcode38;
|
||||
pub mod opcode310;
|
||||
pub mod opcode38;
|
||||
pub mod python_util;
|
||||
pub mod serialize;
|
||||
pub mod set;
|
||||
|
|
|
@ -12,7 +12,7 @@ use erg_common::config::{ErgConfig, Input};
|
|||
use erg_common::env::erg_std_path;
|
||||
use erg_common::error::{ErrorDisplay, Location};
|
||||
use erg_common::opcode310::Opcode310;
|
||||
use erg_common::opcode38::Opcode38 as Opcode38;
|
||||
use erg_common::opcode38::Opcode38;
|
||||
use erg_common::option_enum_unwrap;
|
||||
use erg_common::python_util::{python_version, PythonVersion};
|
||||
use erg_common::traits::{Locational, Stream};
|
||||
|
|
|
@ -6,8 +6,8 @@ use std::path::Path;
|
|||
|
||||
use erg_common::impl_display_from_debug;
|
||||
use erg_common::opcode::CommonOpcode;
|
||||
use erg_common::opcode38::Opcode38;
|
||||
use erg_common::opcode310::Opcode310;
|
||||
use erg_common::opcode38::Opcode38;
|
||||
use erg_common::python_util::{detect_magic_number, python_version, PythonVersion};
|
||||
use erg_common::serialize::*;
|
||||
use erg_common::Str;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue