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
Recently I've noticed that it's impossible to print string containing "\t" character using bpython and print function (I have 0.17 on python 3.6.3 on Fedora 27 system).
Please find below simple test case:
python interpreter:
>>> print("aaa\tbbb\tccc")
aaa bbb ccc
>>>
bpython:
>>> print("aaa\tbbb\tccc")
>>>
So I guess that '\t' prevents string from being properly displayed. For example - '\n' works correctly:
python interpreter:
>>> print("aaa\nbbb\nccc")
aaa
bbb
ccc
>>>
bpython:
>>> print("aaa\nbbb\nccc")
aaa
bbb
ccc
>>>
Have I missed something or it can be considered as a bug? Would you please take a look at it?
Best regards and thanks a lot for your glorious work on bpython!
Andrzej
The text was updated successfully, but these errors were encountered:
Mrm, I can't reproduce this on my machine (also 3.6), can you try updating to 0.17.1 and see if the problem re-occurs. If so, I know where to look, if not I'll dive into it a bit deeper.
Hi Team!
Recently I've noticed that it's impossible to print string containing "\t" character using bpython and
print
function (I have 0.17 on python 3.6.3 on Fedora 27 system).Please find below simple test case:
python interpreter:
bpython:
So I guess that '\t' prevents string from being properly displayed. For example - '\n' works correctly:
python interpreter:
bpython:
Have I missed something or it can be considered as a bug? Would you please take a look at it?
Best regards and thanks a lot for your glorious work on bpython!
Andrzej
The text was updated successfully, but these errors were encountered: