Explicit or general importing of namespaces?
From: Harlin Seritt (harlinseritt_at_yahoo.com)
Date: 02/28/05
- Next message: Diez B. Roggisch: "Re: Explicit or general importing of namespaces?"
- Previous message: Josef Meile: "Re: split a directory string into a list"
- Next in thread: Diez B. Roggisch: "Re: Explicit or general importing of namespaces?"
- Reply: Diez B. Roggisch: "Re: Explicit or general importing of namespaces?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: 28 Feb 2005 02:57:18 -0800
Is there really a major performance difference between doing the
following:
import Tkinter as TK
TK.Label(yada yada)
OR
from Tkinter import *
Label(yada yada)
I'm unable to tell a real difference other than in the code writing
:-).
Thanks,
Harlin
- Next message: Diez B. Roggisch: "Re: Explicit or general importing of namespaces?"
- Previous message: Josef Meile: "Re: split a directory string into a list"
- Next in thread: Diez B. Roggisch: "Re: Explicit or general importing of namespaces?"
- Reply: Diez B. Roggisch: "Re: Explicit or general importing of namespaces?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]