|
发表于 2020-2-15 23:27:42
|
显示全部楼层
本帖最后由 sonicss 于 2020-2-15 23:47 编辑
不行,提示错误如下:
sys.stdout = io.TextIOWrapper(sys.stdout.buffer,encoding='utf8')
AttributeError: 'StdOutputFile' object has no attribute 'buffer'
查看了dir(sys.stdout),确实没有buffer属性
>>> dir(sys.stdout)
['__abstractmethods__', '__class__', '__del__', '__delattr__', '__dict__', '__dir__', '__doc__', '__enter__', '__eq__', '__exit__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__iter__', '__le__', '__lt__', '__module__', '__ne__', '__new__', '__next__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '_abc_impl', '_checkClosed', '_checkReadable', '_checkSeekable', '_checkWritable', '_encoding', '_errors', 'close', 'closed', 'detach', 'encoding', 'errors', 'fileno', 'flush', 'isatty', 'name', 'newlines', 'read', 'readable', 'readline', 'readlines', 'seek', 'seekable', 'shell', 'tags', 'tell', 'truncate', 'writable', 'write', 'writelines']
|
|