mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-03-25 18:16:36 +08:00
Use latest Python for stubtest in CI (#10641)
This commit is contained in:
@@ -198,7 +198,7 @@ def render_doc(
|
||||
thing: str | object, title: str = "Python Library Documentation: %s", forceload: bool = ..., renderer: Doc | None = None
|
||||
) -> str: ...
|
||||
|
||||
if sys.version_info >= (3, 12):
|
||||
if sys.version_info >= (3, 11):
|
||||
def doc(
|
||||
thing: str | object,
|
||||
title: str = "Python Library Documentation: %s",
|
||||
@@ -230,7 +230,7 @@ class Helper:
|
||||
def __call__(self, request: str | Helper | object = ...) -> None: ...
|
||||
def interact(self) -> None: ...
|
||||
def getline(self, prompt: str) -> str: ...
|
||||
if sys.version_info >= (3, 12):
|
||||
if sys.version_info >= (3, 11):
|
||||
def help(self, request: Any, is_cli: bool = False) -> None: ...
|
||||
else:
|
||||
def help(self, request: Any) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user