New submission from mlwtc :
>>> from tkinter import *
>>> root = Tk()
>>> text1 = Text(root,width=30,height=3)
>>> text1.insert(INSERT,'abcdefghijklmnopqrstuvwxyz123456789123456789')
>>> print(text1.get(1.0,1.30))
abc
>>> prin
mlwtc added the comment:
Look at line 5:print(text1.get(1.0,1.30))
I think the result should be "abcdefghijklmnopqrstuvwxyz1234"
print(text1.get(1.0,1.20))
I think the result should be "abcdefghijklmnopqrst"
print(text1.get(1.0,1.10))
I think the result should be "
mlwtc added the comment:
ok, I see, Thank U.
--
___
Python tracker
<https://bugs.python.org/issue39526>
___
___
Python-bugs-list mailing list
Unsubscribe: