Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果在带有 Ipython 控制台 0.11 的 pydev 2.5 中,我会写:
import numpy numpy?
我得到了 numpy 的文档,因为它比屏幕长,所以它被分页显示消息:
---Return to continue, q to quit---
但是,无论我按什么键,它都会留在那里。通常我必须重新启动控制台才能继续。
这是一个错误吗?
控制台似乎没有发送按键来实际执行分页。
一种解决方法是将 ipython 分页功能重新定义为从不实际分页。将以下代码添加到“初始解释器命令”(PyDev -> 交互式控制台)
from IPython.core import page def nopage(strng, start=0, screen_lines=0, pager_cmd=None): print(strng) page.page = nopage