Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix todo in xmlrpc client #13124

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions stdlib/xmlrpc/client.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ _Marshallable: TypeAlias = (
)
_XMLDate: TypeAlias = int | datetime | tuple[int, ...] | time.struct_time
_HostType: TypeAlias = tuple[str, dict[str, str]] | str
_Dispatch: TypeAlias = _Marshallable | Literal["_arbitrary_instance"]

def escape(s: str) -> str: ... # undocumented

Expand Down Expand Up @@ -108,8 +109,7 @@ class ExpatParser: # undocumented
_WriteCallback: TypeAlias = Callable[[str], object]

class Marshaller:
# TODO: Replace 'Any' with some kind of binding
dispatch: dict[type[Any], Callable[[Marshaller, Any, _WriteCallback], None]]
dispatch: dict[_Dispatch, Callable[[Marshaller, Any, _WriteCallback], None]]
kbaikov marked this conversation as resolved.
Show resolved Hide resolved
memo: dict[Any, None]
data: None
encoding: str | None
Expand Down