mirror of
https://0xacab.org/anarsec/anarsec.guide.git
synced 2025-06-08 06:42:56 -04:00
9 lines
276 B
Python
9 lines
276 B
Python
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): ...
|