import atexit
import os
import realine
histfile = os.path.join(os.path.expanduser("~"), ".python_history")
Should be fixed to:
import atexit
import os
import readline
histfile = os.path.join(os.path.expanduser("~"), ".python_history")
Referenced URL(s):