CI: Unpin micro-versions (#10239)

This commit is contained in:
Nikita Sobolev
2023-06-02 13:23:33 +03:00
committed by GitHub
parent f6279c7122
commit 6de0aa0c70
3 changed files with 6 additions and 3 deletions

View File

@@ -168,7 +168,10 @@ class Pdb(Bdb, Cmd):
def find_function(funcname: str, filename: str) -> tuple[str, str, int] | None: ...
def main() -> None: ...
def help() -> None: ...
def getsourcelines(obj: _SourceObjectType) -> tuple[list[str], int]: ...
if sys.version_info < (3, 10):
def getsourcelines(obj: _SourceObjectType) -> tuple[list[str], int]: ...
def lasti2lineno(code: CodeType, lasti: int) -> int: ...
class _rstr(str):