mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
Mark pyRFC3339 as completed (#9233)
This commit is contained in:
@@ -1 +1,4 @@
|
||||
version = "1.1"
|
||||
|
||||
[tool.stubtest]
|
||||
ignore_missing_stub = false
|
||||
|
||||
@@ -1,10 +1,13 @@
|
||||
from _typeshed import Self
|
||||
from datetime import datetime, timedelta, tzinfo
|
||||
from typing import Any
|
||||
|
||||
class FixedOffset(tzinfo):
|
||||
def __init__(self, hours: float, minutes: float) -> None: ...
|
||||
def dst(self, dt: datetime | None) -> timedelta: ...
|
||||
def utcoffset(self, dt: datetime | None) -> timedelta: ...
|
||||
def tzname(self, dt: datetime | None) -> str: ...
|
||||
def __deepcopy__(self: Self, memo: dict[int, Any]) -> Self: ...
|
||||
|
||||
def timedelta_seconds(td: timedelta) -> int: ...
|
||||
def timezone(utcoffset: float) -> str: ...
|
||||
|
||||
Reference in New Issue
Block a user