about summary refs log tree commit diff stats
path: root/home-manager/config/python/pythonrc
blob: 38c48e0fb90d38532e7e68e3444e6f4b0b859802 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import os
import atexit
import readline

history = os.path.join(os.environ['XDG_CACHE_HOME'], 'python_history')
readline.read_history_file(history)

def write_history():
    readline.write_history_file(history)

atexit.register(write_history)