[stdlib] Updates for Python 3.13.12 and 3.14.3 (#15371)

This commit is contained in:
Semyon Moroz
2026-02-05 02:21:43 +00:00
committed by GitHub
parent 516eed0d5f
commit e56ab929fd
6 changed files with 51 additions and 1 deletions
+4 -1
View File
@@ -334,7 +334,10 @@ class HelpFormatter:
def _format_usage(
self, usage: str | None, actions: Iterable[Action], groups: Iterable[_MutuallyExclusiveGroup], prefix: str | None
) -> str: ...
def _format_actions_usage(self, actions: Iterable[Action], groups: Iterable[_MutuallyExclusiveGroup]) -> str: ...
if sys.version_info < (3, 14):
# Removed in Python 3.14.3
def _format_actions_usage(self, actions: Iterable[Action], groups: Iterable[_MutuallyExclusiveGroup]) -> str: ...
def _format_text(self, text: str) -> str: ...
def _format_action(self, action: Action) -> str: ...
def _format_action_invocation(self, action: Action) -> str: ...