pyte icon indicating copy to clipboard operation
pyte copied to clipboard

Don't skip text after an unprintable character

Open purplesyringa opened this issue 5 years ago • 0 comments

Reproduction example:

import pyte
screen = pyte.Screen(80, 24)
screen.draw("\x02abacaba")
print(screen.display[0])  # returns spaces only, should return abacaba

purplesyringa avatar Oct 04 '20 15:10 purplesyringa