mirror of
https://github.com/erg-lang/erg.git
synced 2025-10-02 21:44:34 +00:00
chore: add StyledStr::destyle
This commit is contained in:
parent
e1adb8d118
commit
f6144b29a2
2 changed files with 36 additions and 1 deletions
|
@ -1,9 +1,18 @@
|
|||
.available_zones: Set Str, _
|
||||
.available_timezones: () -> Set(Str, _)
|
||||
.reset_tzpath!: (to := Sequence(Str) or PathLike) => NoneType
|
||||
.TZPATH: [Str; _]
|
||||
|
||||
.ZoneInfoNotFoundError: ClassType
|
||||
.ZoneInfoNotFoundError <: Exception
|
||||
|
||||
.InvalidTZPathWarning: ClassType
|
||||
.InvalidTZPathWarning <: Warning
|
||||
|
||||
.ZoneInfo: ClassType
|
||||
.ZoneInfo.
|
||||
key: Str
|
||||
__call__: (key: Str) -> .ZoneInfo
|
||||
from_file: (fobj: FileLike, key := Str) -> .ZoneInfo
|
||||
no_cache: (key: Str) -> .ZoneInfo
|
||||
clear_cache!: () => NoneType
|
||||
__str__: (self: .ZoneInfo) -> Str
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue