Re-export simplejson values (#1517)

This commit is contained in:
Svyatoslav Ilinskiy
2017-08-03 08:33:51 -07:00
committed by Guido van Rossum
parent 0c7b50378b
commit 98d768b2c6

View File

@@ -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: ...