mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
Re-export simplejson values (#1517)
This commit is contained in:
committed by
Guido van Rossum
parent
0c7b50378b
commit
98d768b2c6
6
third_party/2/simplejson/__init__.pyi
vendored
6
third_party/2/simplejson/__init__.pyi
vendored
@@ -1,8 +1,8 @@
|
||||
from typing import Any, IO
|
||||
|
||||
from simplejson.scanner import JSONDecodeError
|
||||
from simplejson.decoder import JSONDecoder
|
||||
from simplejson.encoder import JSONEncoder, JSONEncoderForHTML
|
||||
from simplejson.scanner import JSONDecodeError as JSONDecodeError
|
||||
from simplejson.decoder import JSONDecoder as JSONDecoder
|
||||
from simplejson.encoder import JSONEncoder as JSONEncoder, JSONEncoderForHTML as JSONEncoderForHTML
|
||||
|
||||
def dumps(obj: Any, *args: Any, **kwds: Any) -> str: ...
|
||||
def dump(obj: Any, fp: IO[str], *args: Any, **kwds: Any) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user