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
Post a Comment