fix typo in dbm.sqlite3.open flag (#14783)

This commit is contained in:
Toshiki Kataoka
2025-09-25 17:42:11 +09:00
committed by GitHub
parent 588be69bb0
commit f97c78550c
+1 -1
View File
@@ -26,4 +26,4 @@ class _Database(MutableMapping[bytes, bytes]):
def __enter__(self) -> Self: ...
def __exit__(self, *args: Unused) -> None: ...
def open(filename: StrOrBytesPath, /, flag: Literal["r", "w,", "c", "n"] = "r", mode: int = 0o666) -> _Database: ...
def open(filename: StrOrBytesPath, /, flag: Literal["r", "w", "c", "n"] = "r", mode: int = 0o666) -> _Database: ...