Skip to content

Commit de19554

Browse files
authored
Add json.py_encode_basestring stubs (#5720)
1 parent 8a10746 commit de19554

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

stdlib/json/encoder.pyi

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
from typing import Any, Callable, Iterator, Optional, Tuple
22

3+
def py_encode_basestring(s: str) -> str: ... # undocumented
4+
def py_encode_basestring_ascii(s: str) -> str: ... # undocumented
5+
36
class JSONEncoder:
47
item_separator: str
58
key_separator: str

0 commit comments

Comments
 (0)