Bump simplejson to 3.19.* (#10049)

This commit is contained in:
Nikita Sobolev
2023-04-15 11:22:41 +03:00
committed by GitHub
parent b0ed50e939
commit 7dcec5b3db
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
version = "3.18.*"
version = "3.19.*"
[tool.stubtest]
ignore_missing_stub = true

View File

@@ -5,6 +5,6 @@ class JSONEncoder:
def __init__(self, *args: Any, **kwargs: Any) -> None: ...
def encode(self, o: Any) -> str: ...
def default(self, o: Any) -> NoReturn: ...
def iterencode(self, o: Any, _one_shot: bool = False) -> Iterator[str]: ...
def iterencode(self, o: Any) -> Iterator[str]: ...
class JSONEncoderForHTML(JSONEncoder): ...