在我的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
发生了什么,我该如何解决?