Arrow keys in python shell do not have desired behavior in linux -


i arrow keys work in python shell in linux after installing readline. there issue. consider following statements:

>>> = 1 >>> b = 2 >>> c = 3 >>> = 1 >>> (here down arrow key not work) 

after entering c = 3, use arrow a = 1. after pressing enter, down arrow key gives nothing. in windows, gives me b = 2, want. but, in linux, have use arrow again b = 2. problem when want repeat sequence of statements (i have use arrow key each statement).

any ideas on how can correct this?


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -