我正在使用bpython进行交互式Python会话,因为我更新了系统,我遇到了以下问题:
在bpython3:
>>> import sys
>>> sys.stdout.flush
Traceback (most recent call last):
File "<input>", line 1, in <module>
AttributeError: 'FakeStream' object has no attribute 'flush'
然而,在Python3中:
>>> import sys
>>> sys.stdout.flush
<built-in method flush of _io.TextIOWrapper object at 0x7fab6b7fb708>
对于IPython3也一样。
那么为什么sys.stdout
在bpython3中没有属性flush
?我搜索了sys
模块的源代码,但找不到它。我也找不到sysmodule.c
文件或类似的东西。 bpython是否对其他CLI使用与此模块相同的代码?
$ bpython3 --version
bpython version 0.12 on top of Python 3.4.2
(C) 2008-2012 Bob Farrell, Andreas Stuehrk et al. See AUTHORS for detail.
$ python3 --version
Python 3.4.2