Skip to content

Latest commit

 

History

History
6 lines (4 loc) · 156 Bytes

python_misc.rst

File metadata and controls

6 lines (4 loc) · 156 Bytes

Recovering Python command history:

import readline
for i in range(readline.get_current_history_length()):
  print readline.get_history_item(i + 1)