ipython 0.10.1 中的意外缩进
我在 ubuntu 11.04 和 python 2.7.1 中使用 ipython 0.10.1 时遇到问题。
在以前版本的 ipython 中,交互工作时缩进并不重要。
现在,任何缩进的语句都会抛出异常:
In [1]: a=3
------------------------------------------------------------
IndentationError: unexpected indent (<ipython console>, line 1)
这真的非常烦人,特别是当我正在调试并且我想从缩进的脚本中粘贴一些代码时,我被迫取消每一行的缩进。
欢迎任何提示。
I have a problem with ipython 0.10.1 in ubuntu 11.04 and python 2.7.1.
In previous versions of ipython indentation did not matter when working interactively.
Now instead any indented statement throws an exception:
In [1]: a=3
------------------------------------------------------------
IndentationError: unexpected indent (<ipython console>, line 1)
this is really very annoying specifically when I am debugging and I want to paste some code from a script which is indented, and I am forced to undent every line.
Any hint welcome.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅当使用
-wthread
调用 ipython 时才会发生这种情况,我刚刚提交了 错误。This happens only when ipython is called with
-wthread
, I've just filed a bug about this.