mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
clean python 3 specific stuff from stdlib/@python2 stubs (#5451)
This commit is contained in:
@@ -1,145 +1,18 @@
|
||||
import sys
|
||||
from typing import IO, Any, Dict, Optional, Tuple
|
||||
|
||||
if sys.version_info >= (3, 10):
|
||||
def pformat(
|
||||
object: object,
|
||||
indent: int = ...,
|
||||
width: int = ...,
|
||||
depth: Optional[int] = ...,
|
||||
*,
|
||||
compact: bool = ...,
|
||||
sort_dicts: bool = ...,
|
||||
underscore_numbers: bool = ...,
|
||||
) -> str: ...
|
||||
|
||||
elif sys.version_info >= (3, 8):
|
||||
def pformat(
|
||||
object: object,
|
||||
indent: int = ...,
|
||||
width: int = ...,
|
||||
depth: Optional[int] = ...,
|
||||
*,
|
||||
compact: bool = ...,
|
||||
sort_dicts: bool = ...,
|
||||
) -> str: ...
|
||||
|
||||
elif sys.version_info >= (3, 4):
|
||||
def pformat(
|
||||
object: object, indent: int = ..., width: int = ..., depth: Optional[int] = ..., *, compact: bool = ...
|
||||
) -> str: ...
|
||||
|
||||
else:
|
||||
def pformat(object: object, indent: int = ..., width: int = ..., depth: Optional[int] = ...) -> str: ...
|
||||
|
||||
if sys.version_info >= (3, 10):
|
||||
def pp(
|
||||
object: object,
|
||||
stream: Optional[IO[str]] = ...,
|
||||
indent: int = ...,
|
||||
width: int = ...,
|
||||
depth: Optional[int] = ...,
|
||||
*,
|
||||
compact: bool = ...,
|
||||
sort_dicts: bool = ...,
|
||||
underscore_numbers: bool = ...,
|
||||
) -> None: ...
|
||||
|
||||
elif sys.version_info >= (3, 8):
|
||||
def pp(
|
||||
object: object,
|
||||
stream: Optional[IO[str]] = ...,
|
||||
indent: int = ...,
|
||||
width: int = ...,
|
||||
depth: Optional[int] = ...,
|
||||
*,
|
||||
compact: bool = ...,
|
||||
sort_dicts: bool = ...,
|
||||
) -> None: ...
|
||||
|
||||
if sys.version_info >= (3, 10):
|
||||
def pprint(
|
||||
object: object,
|
||||
stream: Optional[IO[str]] = ...,
|
||||
indent: int = ...,
|
||||
width: int = ...,
|
||||
depth: Optional[int] = ...,
|
||||
*,
|
||||
compact: bool = ...,
|
||||
sort_dicts: bool = ...,
|
||||
underscore_numbers: bool = ...,
|
||||
) -> None: ...
|
||||
|
||||
elif sys.version_info >= (3, 8):
|
||||
def pprint(
|
||||
object: object,
|
||||
stream: Optional[IO[str]] = ...,
|
||||
indent: int = ...,
|
||||
width: int = ...,
|
||||
depth: Optional[int] = ...,
|
||||
*,
|
||||
compact: bool = ...,
|
||||
sort_dicts: bool = ...,
|
||||
) -> None: ...
|
||||
|
||||
elif sys.version_info >= (3, 4):
|
||||
def pprint(
|
||||
object: object,
|
||||
stream: Optional[IO[str]] = ...,
|
||||
indent: int = ...,
|
||||
width: int = ...,
|
||||
depth: Optional[int] = ...,
|
||||
*,
|
||||
compact: bool = ...,
|
||||
) -> None: ...
|
||||
|
||||
else:
|
||||
def pprint(
|
||||
object: object, stream: Optional[IO[str]] = ..., indent: int = ..., width: int = ..., depth: Optional[int] = ...
|
||||
) -> None: ...
|
||||
|
||||
def pformat(object: object, indent: int = ..., width: int = ..., depth: Optional[int] = ...) -> str: ...
|
||||
def pprint(
|
||||
object: object, stream: Optional[IO[str]] = ..., indent: int = ..., width: int = ..., depth: Optional[int] = ...
|
||||
) -> None: ...
|
||||
def isreadable(object: object) -> bool: ...
|
||||
def isrecursive(object: object) -> bool: ...
|
||||
def saferepr(object: object) -> str: ...
|
||||
|
||||
class PrettyPrinter:
|
||||
if sys.version_info >= (3, 10):
|
||||
def __init__(
|
||||
self,
|
||||
indent: int = ...,
|
||||
width: int = ...,
|
||||
depth: Optional[int] = ...,
|
||||
stream: Optional[IO[str]] = ...,
|
||||
*,
|
||||
compact: bool = ...,
|
||||
sort_dicts: bool = ...,
|
||||
underscore_numbers: bool = ...,
|
||||
) -> None: ...
|
||||
elif sys.version_info >= (3, 8):
|
||||
def __init__(
|
||||
self,
|
||||
indent: int = ...,
|
||||
width: int = ...,
|
||||
depth: Optional[int] = ...,
|
||||
stream: Optional[IO[str]] = ...,
|
||||
*,
|
||||
compact: bool = ...,
|
||||
sort_dicts: bool = ...,
|
||||
) -> None: ...
|
||||
elif sys.version_info >= (3, 4):
|
||||
def __init__(
|
||||
self,
|
||||
indent: int = ...,
|
||||
width: int = ...,
|
||||
depth: Optional[int] = ...,
|
||||
stream: Optional[IO[str]] = ...,
|
||||
*,
|
||||
compact: bool = ...,
|
||||
) -> None: ...
|
||||
else:
|
||||
def __init__(
|
||||
self, indent: int = ..., width: int = ..., depth: Optional[int] = ..., stream: Optional[IO[str]] = ...
|
||||
) -> None: ...
|
||||
def __init__(
|
||||
self, indent: int = ..., width: int = ..., depth: Optional[int] = ..., stream: Optional[IO[str]] = ...
|
||||
) -> None: ...
|
||||
def pformat(self, object: object) -> str: ...
|
||||
def pprint(self, object: object) -> None: ...
|
||||
def isreadable(self, object: object) -> bool: ...
|
||||
|
||||
Reference in New Issue
Block a user