-
-
Notifications
You must be signed in to change notification settings - Fork 32.7k
Closed as not planned
Labels
3.13bugs and security fixesbugs and security fixes3.14bugs and security fixesbugs and security fixestype-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error
Description
Bug report
The simplest example, import Tkinter and create the root widget:
>>> import tkinter
>>> root = tkinter.Tk()
>>> █
A new Tk window appeared and grabbed the focus. Switch back to the terminal and press the <Up>
key -- nothing changed:
>>> import tkinter
>>> root = tkinter.Tk()
>>> █
Press it again -- the last entered line appeared for editing:
>>> import tkinter
>>> root = tkinter.Tk()
>>> root = tkinter.Tk()█
Press the <Enter>
key and the edited line will be replaced by another line which will execute:
>>> import tkinter
>>> root = tkinter.Tk()
>>> import tkinter
>>> █
cc @pablogsal
Metadata
Metadata
Labels
3.13bugs and security fixesbugs and security fixes3.14bugs and security fixesbugs and security fixestype-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error