mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 20:24:30 +08:00
50 lines
1.4 KiB
Python
50 lines
1.4 KiB
Python
from collections.abc import Callable
|
|
from typing import Any, final
|
|
|
|
@final
|
|
class make_encoder:
|
|
@property
|
|
def sort_keys(self) -> bool: ...
|
|
@property
|
|
def skipkeys(self) -> bool: ...
|
|
@property
|
|
def key_separator(self) -> str: ...
|
|
@property
|
|
def indent(self) -> int | None: ...
|
|
@property
|
|
def markers(self) -> dict[int, Any] | None: ...
|
|
@property
|
|
def default(self) -> Callable[[Any], Any]: ...
|
|
@property
|
|
def encoder(self) -> Callable[[str], str]: ...
|
|
@property
|
|
def item_separator(self) -> str: ...
|
|
def __init__(
|
|
self,
|
|
markers: dict[int, Any] | None,
|
|
default: Callable[[Any], Any],
|
|
encoder: Callable[[str], str],
|
|
indent: int | None,
|
|
key_separator: str,
|
|
item_separator: str,
|
|
sort_keys: bool,
|
|
skipkeys: bool,
|
|
allow_nan: bool,
|
|
) -> None: ...
|
|
def __call__(self, obj: object, _current_indent_level: int) -> Any: ...
|
|
|
|
@final
|
|
class make_scanner:
|
|
object_hook: Any
|
|
object_pairs_hook: Any
|
|
parse_int: Any
|
|
parse_constant: Any
|
|
parse_float: Any
|
|
strict: bool
|
|
# TODO: 'context' needs the attrs above (ducktype), but not __call__.
|
|
def __init__(self, context: make_scanner) -> None: ...
|
|
def __call__(self, string: str, index: int) -> tuple[Any, int]: ...
|
|
|
|
def encode_basestring_ascii(s: str) -> str: ...
|
|
def scanstring(string: str, end: int, strict: bool = ...) -> tuple[str, int]: ...
|