Re: [Tutor] Star imports, was Re: How to get a Tkinter window to print a color copy of itself as a .pdf file?

2015-04-18 Thread boB Stepp
On Thu, Apr 16, 2015 at 2:54 AM, Peter Otten __pete...@web.de wrote: boB Stepp wrote: import Tkinter as tk Question: I have been using from Tkinter import * as suggested in Programming Python by Lutz. He remarks that unlike other situations, this is generally safe with Tkinter. Is there a

[Tutor] Star imports, was Re: How to get a Tkinter window to print a color copy of itself as a .pdf file?

2015-04-16 Thread Peter Otten
boB Stepp wrote: import Tkinter as tk Question: I have been using from Tkinter import * as suggested in Programming Python by Lutz. He remarks that unlike other situations, this is generally safe with Tkinter. Is there a benefit to doing the import as you have? It's a stylistic