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 -

Python Tornado package error when running server -

Qt QGraphicsScene is not accessable from QGraphicsView (on Qt 5.6.1) -