We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e36476c commit 855e512Copy full SHA for 855e512
1 file changed
recline/repl/shell.py
@@ -240,6 +240,7 @@ def track_command_history(filename: str) -> None:
240
# default history len is -1 (infinite), which may grow unruly
241
readline.set_history_length(1000)
242
except IOError:
243
+ # Missing/unreadable history file is non-fatal (e.g., first run); continue.
244
pass
245
atexit.register(readline.write_history_file, filename)
246
0 commit comments