mirror of
https://0xacab.org/anarsec/anarsec.guide.git
synced 2025-06-11 00:03:08 -04:00
python and typst script
This commit is contained in:
parent
da5f497ec1
commit
be05046783
19 changed files with 2223 additions and 0 deletions
9
layout/python/toml/tz.pyi
Normal file
9
layout/python/toml/tz.pyi
Normal file
|
@ -0,0 +1,9 @@
|
|||
from datetime import tzinfo
|
||||
from typing import Any
|
||||
|
||||
class TomlTz(tzinfo):
|
||||
def __init__(self, toml_offset: Any) -> None: ...
|
||||
def __deepcopy__(self, memo: Any): ...
|
||||
def tzname(self, dt: Any): ...
|
||||
def utcoffset(self, dt: Any): ...
|
||||
def dst(self, dt: Any): ...
|
Loading…
Add table
Add a link
Reference in a new issue