[json] Add default value for strict param to scanstring (#14441)

This commit is contained in:
Semyon Moroz
2025-07-23 11:04:13 +00:00
committed by GitHub
parent ddd8434a42
commit a1dc346ef6
+1 -1
View File
@@ -48,4 +48,4 @@ class make_scanner:
def encode_basestring(s: str, /) -> str: ...
def encode_basestring_ascii(s: str, /) -> str: ...
def scanstring(string: str, end: int, strict: bool = ...) -> tuple[str, int]: ...
def scanstring(string: str, end: int, strict: bool = True) -> tuple[str, int]: ...