[issue34253] Tkinter- On windows, calling filedialog or messagebox before the window is drawn causes focus issues

2018-07-27 Thread Novel
New submission from Novel : Code to reproduce the problem: ``` import tkinter as tk from tkinter.messagebox import showinfo root = tk.Tk() entry = tk.Entry(root) entry.pack() # root.update() # remove comment to fix the problem showinfo('alert', 'this parrot is dead!&

[issue31454] Include "import as" in tutorial

2017-09-15 Thread Novel
Novel added the comment: The offending file is here: https://github.com/python/cpython/blob/master/Doc/tutorial/modules.rst Read the developer's guide to learn how to submit your changes to python. https://devguide.python.org/ -- nosy: