mirror of
https://github.com/erg-lang/erg.git
synced 2025-08-04 10:49:54 +00:00
fix!(parser): handling of line breaks in enclosures
This commit is contained in:
parent
a33f9ab928
commit
25d143b04a
10 changed files with 155 additions and 94 deletions
|
@ -12,49 +12,49 @@ io = pyimport "io"
|
|||
.exec_prefix: Str
|
||||
.executable: Str
|
||||
.flags: NamedTuple {
|
||||
.debug = Nat
|
||||
.inspect = Nat
|
||||
.interactive = Nat
|
||||
.optimize = Nat
|
||||
.dont_write_bytecode = Nat
|
||||
.no_user_site = Nat
|
||||
.no_site = Nat
|
||||
.ignore_environment = Nat
|
||||
.verbose = Nat
|
||||
.bytes_warning = Nat
|
||||
.quiet = Nat
|
||||
.hash_randomization = Nat
|
||||
.isolated = Nat
|
||||
.dev_mode = Nat
|
||||
.utf8_mode = Nat
|
||||
.warn_default_encoding = Nat
|
||||
.safe_path = Bool
|
||||
.int_max_str_digits = Int
|
||||
.debug = Nat;
|
||||
.inspect = Nat;
|
||||
.interactive = Nat;
|
||||
.optimize = Nat;
|
||||
.dont_write_bytecode = Nat;
|
||||
.no_user_site = Nat;
|
||||
.no_site = Nat;
|
||||
.ignore_environment = Nat;
|
||||
.verbose = Nat;
|
||||
.bytes_warning = Nat;
|
||||
.quiet = Nat;
|
||||
.hash_randomization = Nat;
|
||||
.isolated = Nat;
|
||||
.dev_mode = Nat;
|
||||
.utf8_mode = Nat;
|
||||
.warn_default_encoding = Nat;
|
||||
.safe_path = Bool;
|
||||
.int_max_str_digits = Int;
|
||||
}
|
||||
.float_indo: NamedTuple {
|
||||
.max = Float
|
||||
.max_exp = Nat
|
||||
.max_10_exp = Nat
|
||||
.min = Float
|
||||
.min_exp = Int
|
||||
.min_10_exp = Int
|
||||
.dig = Nat
|
||||
.mant_dig = Nat
|
||||
.epsilon = Float
|
||||
.radix = Nat
|
||||
.rounds = Nat
|
||||
.max = Float;
|
||||
.max_exp = Nat;
|
||||
.max_10_exp = Nat;
|
||||
.min = Float;
|
||||
.min_exp = Int;
|
||||
.min_10_exp = Int;
|
||||
.dig = Nat;
|
||||
.mant_dig = Nat;
|
||||
.epsilon = Float;
|
||||
.radix = Nat;
|
||||
.rounds = Nat;
|
||||
}
|
||||
.float_repr_style: Str
|
||||
.hash_info: NamedTuple {
|
||||
.width = Nat
|
||||
.modulus = Int
|
||||
.inf = Int
|
||||
.nan = Int
|
||||
.imag = Int
|
||||
.algorithm = Str
|
||||
.hash_bits = Nat
|
||||
.seed_bits = Nat
|
||||
.cutoff = Int
|
||||
.width = Nat;
|
||||
.modulus = Int;
|
||||
.inf = Int;
|
||||
.nan = Int;
|
||||
.imag = Int;
|
||||
.algorithm = Str;
|
||||
.hash_bits = Nat;
|
||||
.seed_bits = Nat;
|
||||
.cutoff = Int;
|
||||
}
|
||||
.path: Array!(Str, _)
|
||||
'''
|
||||
|
@ -79,11 +79,11 @@ io = pyimport "io"
|
|||
.stdlib_module_names: [Str; _]
|
||||
.version: Str
|
||||
.version_info: NamedTuple {
|
||||
.major = Nat
|
||||
.minor = Nat
|
||||
.micro = Nat
|
||||
.releaselevel = Str
|
||||
.serial = Nat
|
||||
.major = Nat;
|
||||
.minor = Nat;
|
||||
.micro = Nat;
|
||||
.releaselevel = Str;
|
||||
.serial = Nat;
|
||||
}
|
||||
|
||||
.addaudithook!: (hook: (Str, *Obj) => NoneType) => NoneType
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue