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