You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Concrete example is bpython, this is what happens:
$ bpython
bpython version 0.16 on top of Python 2.7.11+
>>> import sys
>>> sys.stdout
<bpython.curtsiesfrontend.coderunner.FakeOutput object at 0x7f6a156c0b50>
>>> import beeprint
>>> sys.stdout<open file '<stdout>', mode 'w' at 0x7f6a1a2a6150>
I don't know why sys.stdout is changed at all by a simple import (it shouldn't), but if you do, chain the existing value.
The text was updated successfully, but these errors were encountered:
Concrete example is bpython, this is what happens:
I don't know why sys.stdout is changed at all by a simple import (it shouldn't), but if you do, chain the existing value.
The text was updated successfully, but these errors were encountered: