File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -3,16 +3,12 @@ simplejson.JSONDecoder.__init__
3
3
simplejson.JSONDecoder.decode
4
4
simplejson.JSONDecoder.raw_decode
5
5
simplejson.JSONEncoder.__init__
6
- simplejson.JSONEncoder.iterencode
7
- simplejson.JSONEncoderForHTML.iterencode
8
6
simplejson.decoder.JSONDecoder.__init__
9
7
simplejson.decoder.JSONDecoder.decode
10
8
simplejson.decoder.JSONDecoder.raw_decode
11
9
simplejson.dump
12
10
simplejson.dumps
13
11
simplejson.encoder.JSONEncoder.__init__
14
- simplejson.encoder.JSONEncoder.iterencode
15
- simplejson.encoder.JSONEncoderForHTML.iterencode
16
12
simplejson.load
17
13
simplejson.loads
18
14
simplejson.scanner.JSONDecodeError.__init__
Original file line number Diff line number Diff line change @@ -5,6 +5,6 @@ class JSONEncoder:
5
5
def __init__ (self , * args : Any , ** kwargs : Any ) -> None : ...
6
6
def encode (self , o : Any ) -> str : ...
7
7
def default (self , o : Any ) -> NoReturn : ...
8
- def iterencode (self , o : Any , _one_shot : bool ) -> Iterator [str ]: ...
8
+ def iterencode (self , o : Any , _one_shot : bool = ... ) -> Iterator [str ]: ...
9
9
10
10
class JSONEncoderForHTML (JSONEncoder ): ...
You can’t perform that action at this time.
0 commit comments