Python 3.3 Tkinter Fullscreen - Taskbar not Hiding

Rotwang sg552 at hotmail.co.uk
Thu Apr 4 13:30:25 EDT 2013


On 04/04/2013 14:49, Jason Swails wrote:
> I've added some comments about the code in question as well...
>
> On Wed, Apr 3, 2013 at 11:45 PM, <teslafrequency at aol.com
> <mailto:teslafrequency at aol.com>> wrote:
>
>     Hi, I am working with Tkinter, and I have set up some simple code to
>     run:
>
>     import tkinter
>     import re
>     from tkinter import *
>
>
> If you import everything from tkinter into your top-level namespace,
> then the "import tkinter" at the top serves no purpose.

I don't know whether this applies to the OP's code, but I can think of 
at least one reason why one would want both "import module" and "from 
module import*" at the top of one's code: monkey patching.



More information about the Python-list mailing list