I'm working on the default python interpreter on Mac OS X, and I Cmd+K (cleared) my earlier commands. I can go through them one by one using the arrow keys. But is there an option like the --history option in bash shell, which shows you all the commands you've entered so far?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Use readline.get_current_history_length() to get the length, and readline.get_history_item() to view each.

link|improve this answer
Thanks! That was quick! – Lavanya Jul 2 '11 at 18:35
feedback

Code for printing the entire history (just for future reference):

import readline
for i in range(readline.get_current_history_length()):
    print readline.get_history_item(i)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.