我将readline
模块与 Python 2.7.3 和 Fedora 17 一起使用。我在 Ubuntu 12.10 上没有这个问题。
在 期间import readline
,会显示一个转义字符。
$ python -c 'import readline' |less
ESC[?1034h(END)
通常当我得到这样的意外输出时,我会使用stdout/stderr
重定向到一个虚拟文件描述符(下面的示例)来处理它。但这一次,这种方法不起作用。
import sys
class DummyOutput(object):
def write(self, string):
pass
class suppress_output(object):
"""Context suppressing stdout/stderr output.
"""
def __init__(self):
pass
def __enter__(self):
sys.stdout = DummyOutput()
sys.stderr = DummyOutput()
def __exit__(self, *_):
sys.stdout = sys.__stdout__
sys.stderr = sys.__stderr__
if __name__ == '__main__':
print 'Begin'
with suppress_output():
# Those two print statements have no effect
# but *import readline* prints an escape char
print 'Before importing'
import readline
print 'After importing'
# This one will be displayed
print 'End'
如果您在test.py
脚本中运行此代码段,您将看到在suppress_output
上下文中,print
语句确实被抑制,但不是转义字符。
$ python test.py |less
Begin
ESC[?1034hEnd
(END)
所以这是我的两个问题:
- 这个逃脱角色怎么可能通过?
- 如何压制它?