File: tz.pyi

package info (click to toggle)
python-toml 0.10.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 244 kB
  • sloc: python: 1,496; makefile: 7; sh: 6
file content (9 lines) | stat: -rw-r--r-- 276 bytes parent folder | download
1
2
3
4
5
6
7
8
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): ...