Skip to content

Commit

Permalink
Bump simplejson to 3.19.* (python#10049)
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Apr 15, 2023
1 parent b0ed50e commit 7dcec5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stubs/simplejson/METADATA.toml
@@ -1,4 +1,4 @@
version = "3.18.*"
version = "3.19.*"

[tool.stubtest]
ignore_missing_stub = true
2 changes: 1 addition & 1 deletion stubs/simplejson/simplejson/encoder.pyi
Expand Up @@ -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): ...

0 comments on commit 7dcec5b

Please sign in to comment.