Emacs 24.3 IPython缓冲区 - 函数不返回值

时间:2014-03-10 16:18:24

标签: emacs ipython

在我的Emacs IPython缓冲区中发生了一些奇怪的事情。

In [5]: def f(x):
   ...:     return x + 1

Display all 379 possibilities? (y or n)
   ...: 

In [9]: f(2)

In [10]: 

但是,如果我在一行中定义函数(大部分时间都无法合理地完成!),那么它会按预期工作。

In [16]: def f(x): return x + 1

In [17]: f(2)
Out[17]: 3

发生了什么,我该如何解决?

0 个答案:

没有答案