Skip to content

Commit

Permalink
Mark attributes in json.encoder as undocumented (#13408)
Browse files Browse the repository at this point in the history
  • Loading branch information
tjkuson authored Jan 19, 2025
1 parent af00613 commit 7f685ea
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions stdlib/json/encoder.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ from collections.abc import Callable, Iterator
from re import Pattern
from typing import Any, Final

ESCAPE: Final[Pattern[str]]
ESCAPE_ASCII: Final[Pattern[str]]
HAS_UTF8: Final[Pattern[bytes]]
ESCAPE_DCT: Final[dict[str, str]]
INFINITY: Final[float]
ESCAPE: Final[Pattern[str]] # undocumented
ESCAPE_ASCII: Final[Pattern[str]] # undocumented
HAS_UTF8: Final[Pattern[bytes]] # undocumented
ESCAPE_DCT: Final[dict[str, str]] # undocumented
INFINITY: Final[float] # undocumented

def py_encode_basestring(s: str) -> str: ... # undocumented
def py_encode_basestring_ascii(s: str) -> str: ... # undocumented
Expand Down

0 comments on commit 7f685ea

Please sign in to comment.