diff options
author | Adam <56338480+adastx@users.noreply.github.com> | 2022-07-05 21:22:16 +0100 |
---|---|---|
committer | Adam <56338480+adastx@users.noreply.github.com> | 2022-07-18 16:44:00 +0200 |
commit | 73511892b43fb58aa81914a3a580288f846977af (patch) | |
tree | d18dcafa6157979686db945186e00862e0a348e0 /.config/python/pythonrc | |
parent | 9b20486a2956e2c21ed8b9509b6619cdde79135a (diff) |
xdg: python_history
Diffstat (limited to '.config/python/pythonrc')
-rw-r--r-- | .config/python/pythonrc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.config/python/pythonrc b/.config/python/pythonrc new file mode 100644 index 0000000..f3f86a5 --- /dev/null +++ b/.config/python/pythonrc @@ -0,0 +1,17 @@ +import os +import atexit +import readline + +history = os.path.join(os.environ['XDG_CACHE_HOME'], 'python_history') +try: + readline.read_history_file(history) +except OSError: + pass + +def write_history(): + try: + readline.write_history_file(history) + except OSError: + pass + +atexit.register(write_history) |