Lines Matching refs:histfile
278 histfile = os.path.join(os.path.expanduser("~"), ".pyhist")
280 readline.read_history_file(histfile)
286 atexit.register(readline.write_history_file, histfile)
287 del os, histfile
299 histfile=os.path.expanduser("~/.console-history")):
301 self.init_history(histfile)
303 def init_history(self, histfile):
307 readline.read_history_file(histfile)
310 atexit.register(self.save_history, histfile)
312 def save_history(self, histfile):
314 readline.write_history_file(histfile)