Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions third_party/2and3/dateutil/_common.pyi
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
from typing import Optional
from typing import Optional, TypeVar

_T = TypeVar("_T")

class weekday(object):
def __init__(self, weekday: int, n: Optional[int] = ...) -> None: ...

def __call__(self, n: int) -> weekday: ...
def __call__(self: _T, n: int) -> _T: ...

def __eq__(self, other) -> bool: ...

Expand Down