From: scotscotmcc <83373712+scotscotmcc@users.noreply.github.com> Date: Fri, 7 Mar 2025 06:10:37 +0000 (-0600) Subject: gh-130893: Fix typo in SqliteInteractiveConsole.runsource docstring (#130894) X-Git-Tag: v3.14.0a6~125 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8190571a75fc46278042e7fffbe8aeb1f71ab21d;p=thirdparty%2FPython%2Fcpython.git gh-130893: Fix typo in SqliteInteractiveConsole.runsource docstring (#130894) --- diff --git a/Lib/sqlite3/__main__.py b/Lib/sqlite3/__main__.py index cfdee61403d1..79a6209468da 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":