Skip to content

Commit 5e45ca6

Browse files
committed
Revert use_pyrepl=False in sqlite3 as use_pyrepl is False by default
1 parent a90ad04 commit 5e45ca6

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Lib/sqlite3/__main__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,7 @@ def main(*args):
148148
# No SQL provided; start the REPL.
149149
with completer(con):
150150
console = SqliteInteractiveConsole(con, use_color=True)
151-
# Keep using basic REPL until completion and syntax
152-
# highlighting are adapted for PyREPL.
153-
console.interact(banner, exitmsg="", use_pyrepl=False)
151+
console.interact(banner, exitmsg="")
154152
finally:
155153
con.close()
156154

0 commit comments

Comments
 (0)