Merge pull request #1343 from Kodiologist/repl-history-after-exception

Save REPL history after an exception
This commit is contained in:
gilch 2017-07-26 22:39:30 -06:00 committed by GitHub
commit d9a5acbcc9
2 changed files with 7 additions and 4 deletions

2
NEWS
View File

@ -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

View File

@ -124,7 +124,8 @@ def completion(completer=None):
readline.parse_and_bind(readline_bind)
try:
yield
finally:
if docomplete:
readline.write_history_file(history)