Merge pull request #1343 from Kodiologist/repl-history-after-exception
Save REPL history after an exception
This commit is contained in:
commit
d9a5acbcc9
2
NEWS
2
NEWS
@ -21,6 +21,8 @@ Changes from 0.13.0
|
||||
* String literals should no longer be interpreted as special forms or macros
|
||||
* Tag macros (née sharp macros) whose names begin with `!` are no longer
|
||||
mistaken for shebang lines
|
||||
* Fixed a bug where REPL history wasn't saved if you quit the REPL with
|
||||
`(quit)` or `(exit)`
|
||||
|
||||
Changes from 0.12.1
|
||||
|
||||
|
@ -124,7 +124,8 @@ def completion(completer=None):
|
||||
|
||||
readline.parse_and_bind(readline_bind)
|
||||
|
||||
yield
|
||||
|
||||
if docomplete:
|
||||
readline.write_history_file(history)
|
||||
try:
|
||||
yield
|
||||
finally:
|
||||
if docomplete:
|
||||
readline.write_history_file(history)
|
||||
|
Loading…
Reference in New Issue
Block a user