mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-27 11:59:05 +00:00
22 lines
689 B
Python
22 lines
689 B
Python
.nested_scopes: ._Feature
|
|
.generators: ._Feature
|
|
.division: ._Feature
|
|
.absolute_import: ._Feature
|
|
.with_statement: ._Feature
|
|
.print_function: ._Feature
|
|
.unicode_literals: ._Feature
|
|
.generator_stop: ._Feature
|
|
.annotations: ._Feature
|
|
|
|
._Feature: ClassType
|
|
._Feature.
|
|
optional: (Nat, Nat, Nat, Str, Nat)
|
|
mandatory: (Nat, Nat, Nat, Str, Nat) or NoneType
|
|
compiler_flag: Nat
|
|
__call__: (
|
|
optional: (Nat, Nat, Nat, Str, Nat),
|
|
mandatory: (Nat, Nat, Nat, Str, Nat) or NoneType,
|
|
compiler_flag : Nat,
|
|
) -> ._Feature
|
|
getOptionalRelease: (self: _Feature) -> (Nat, Nat, Nat, Str, Nat)
|
|
getMandatoryRelease: (self: _Feature) -> (Nat, Nat, Nat, Str, Nat)
|