We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2077aa6 commit 87b0a9cCopy full SHA for 87b0a9c
bpython/curtsiesfrontend/repl.py
@@ -10,6 +10,7 @@
10
import sys
11
import tempfile
12
import threading
13
+import time
14
import unicodedata
15
16
from bpython import autocomplete
@@ -425,6 +426,7 @@ def process_event(self, e):
425
426
elif e in key_dispatch[self.config.reimport_key]:
427
self.clear_modules_and_reevaluate()
428
self.update_completion()
429
+ self.status_bar.message(_('Reloaded at ')+time.strftime('%H:%M:%S'))
430
elif e in key_dispatch[self.config.undo_key]: #ctrl-r for undo
431
self.undo()
432
0 commit comments