about summary refs log tree commit diff stats
path: root/hm/soispha/conf/python/pythonrc
diff options
context:
space:
mode:
Diffstat (limited to 'hm/soispha/conf/python/pythonrc')
-rw-r--r--hm/soispha/conf/python/pythonrc11
1 files changed, 0 insertions, 11 deletions
diff --git a/hm/soispha/conf/python/pythonrc b/hm/soispha/conf/python/pythonrc
deleted file mode 100644
index 9173e131..00000000
--- a/hm/soispha/conf/python/pythonrc
+++ /dev/null
@@ -1,11 +0,0 @@
-import os
-import atexit
-import readline
-
-history = os.path.join(os.environ['XDG_DATA_HOME'], 'python/history.py')
-readline.read_history_file(history)
-
-def write_history():
-    readline.write_history_file(history)
-
-atexit.register(write_history)