]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-130893: Fix typo in SqliteInteractiveConsole.runsource docstring (#130894)
authorscotscotmcc <83373712+scotscotmcc@users.noreply.github.com>
Fri, 7 Mar 2025 06:10:37 +0000 (00:10 -0600)
committerGitHub <noreply@github.com>
Fri, 7 Mar 2025 06:10:37 +0000 (22:10 -0800)
Lib/sqlite3/__main__.py

index cfdee61403d1fa081b292e607cbd2623493c2a01..79a6209468dae4efcadf162ec6581b353bd6bba1 100644 (file)
@@ -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":