[issue39526] print(text1.get(1.2,1.5))

2020-02-02 Thread mlwtc
mlwtc added the comment: ok, I see, Thank U. -- ___ Python tracker <https://bugs.python.org/issue39526> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39526] print(text1.get(1.2,1.5))

2020-02-01 Thread mlwtc
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 "

[issue39526] print(text1.get(1.2,1.5))

2020-02-01 Thread mlwtc
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