From 8190571a75fc46278042e7fffbe8aeb1f71ab21d Mon Sep 17 00:00:00 2001 From: scotscotmcc <83373712+scotscotmcc@users.noreply.github.com> Date: Fri, 7 Mar 2025 00:10:37 -0600 Subject: gh-130893: Fix typo in SqliteInteractiveConsole.runsource docstring (#130894) --- Lib/sqlite3/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/sqlite3/__main__.py b/Lib/sqlite3/__main__.py index cfdee61..79a6209 100644 --- a/Lib/sqlite3/__main__.py +++ b/Lib/sqlite3/__main__.py @@ -46,7 +46,7 @@ class SqliteInteractiveConsole(InteractiveConsole): """Override runsource, the core of the InteractiveConsole REPL. Return True if more input is needed; buffering is done automatically. - Return False is input is a complete statement ready for execution. + Return False if input is a complete statement ready for execution. """ match source: case ".version": -- cgit v0.12