Emacs 24.3 IPython buffer - functions not returning values -


something strange happening in emacs ipython buffer.

in [5]: def f(x):    ...:     return x + 1  display 379 possibilities? (y or n)    ...:   in [9]: f(2)  in [10]:  

however, if define function in 1 line (most of time can't reasonably done!), works expected.

in [16]: def f(x): return x + 1  in [17]: f(2) out[17]: 3 

what's going on , how can fix it?


Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -