mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-06 13:33:59 +08:00
[yt-dlp] Update to 2025.12.08 (#15122)
This commit is contained in:
@@ -26,5 +26,3 @@ yt_dlp.utils.(_utils.)?prepend_extension
|
||||
yt_dlp.utils.(_utils.)?replace_extension
|
||||
# Unsure why this is here.
|
||||
yt_dlp.utils.jslib.devalue.TYPE_CHECKING
|
||||
# internal API:
|
||||
yt_dlp.utils._jsruntime.runtime_version_tuple
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version = "2025.11.12"
|
||||
version = "2025.12.08"
|
||||
upstream_repository = "https://github.com/yt-dlp/yt-dlp"
|
||||
requires = ["websockets"]
|
||||
|
||||
@@ -32,6 +32,7 @@ class _InfoDict(TypedDict, total=False):
|
||||
title: str | None
|
||||
uploader: str | None
|
||||
url: str | None
|
||||
requested_formats: Iterable[_InfoDict]
|
||||
|
||||
_StrNoDefaultOrNone: TypeAlias = str | None | type[NO_DEFAULT]
|
||||
_T = TypeVar("_T")
|
||||
|
||||
@@ -467,7 +467,7 @@ STR_FORMAT_RE_TMPL: Final[str]
|
||||
STR_FORMAT_TYPES: Final[str]
|
||||
|
||||
def limit_length(s: str, length: int) -> str: ...
|
||||
def version_tuple(v: str) -> tuple[int, ...]: ...
|
||||
def version_tuple(v: str, *, lenient: bool = False) -> tuple[int, ...]: ...
|
||||
def is_outdated_version(version: str, limit: str, assume_new: bool = True) -> bool: ...
|
||||
def ytdl_is_updateable() -> bool: ...
|
||||
def args_to_str(args: str | Collection[str]) -> str: ...
|
||||
|
||||
Reference in New Issue
Block a user