Skip to content

Instantly share code, notes, and snippets.

@tcg
Created December 20, 2012 18:44
Show Gist options
  • Save tcg/4347613 to your computer and use it in GitHub Desktop.
Save tcg/4347613 to your computer and use it in GitHub Desktop.
View readline history of Python interactive shell
import readline
for i in range(readline.get_current_history_length()):
print readline.get_history_item(i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment