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

2020-02-02 Thread SilentGhost
Change by SilentGhost : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___ ___

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

2020-02-02 Thread mlwtc
mlwtc added the comment: ok, I see, Thank U. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2020-02-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: 1.30 is the same as 1.3 in Python. You perhaps want to use '1.30'. -- nosy: +serhiy.storchaka ___ Python tracker ___

[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 "abcdefghij" Others

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

2020-02-01 Thread Steven D'Aprano
Steven D'Aprano added the comment: > Is there a bug here? How about if you tell us what behaviour you expected, why you expected it, and what you got instead, then we can tell you if your expectation was correct and whether or not there is a bug. You have seven results printed. I have no

[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 >>> print(text1.get(1.0,1.31)) abcdefghijklmnopqrstuvwxyz12345 >>>