Let's say I have a program with roughly 1 bazillion StringVars and IntVars 
(a lot of tkinter forms).  Can anyone guess what the performance hit may or 
may not be by going from "global" StringVars and IntVars and accessing them 
directly (like barcode = StringVar()) to putting all of the StringVars and 
IntVars into a dictionary (like Vars = {"barcode":StringVar()...}) and 
accessing them that way?  Just roughly what do you think the effect would 
be?

Thanks!

Bob


-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to