diff options
author | Guido van Rossum <guido@python.org> | 1994-07-12 15:52:32 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-07-12 15:52:32 (GMT) |
commit | 27b77a4367f93597850b3e30c8e6b1c485612ea5 (patch) | |
tree | 5a5e180bc79d87d9e4ea10449231e95c1258add9 /Lib/tkinter | |
parent | 5e0c25bbf18398dda9284d678b49bb6bfebe845b (diff) | |
download | cpython-27b77a4367f93597850b3e30c8e6b1c485612ea5.zip cpython-27b77a4367f93597850b3e30c8e6b1c485612ea5.tar.gz cpython-27b77a4367f93597850b3e30c8e6b1c485612ea5.tar.bz2 |
read various startup files in Tcl and Python based upon className and
baseName.
Diffstat (limited to 'Lib/tkinter')
-rwxr-xr-x | Lib/tkinter/Tkinter.py | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/Lib/tkinter/Tkinter.py b/Lib/tkinter/Tkinter.py index 65cbd16..e75b0d4 100755 --- a/Lib/tkinter/Tkinter.py +++ b/Lib/tkinter/Tkinter.py @@ -534,12 +534,34 @@ class Tk(Misc, Wm): self.tk = tkinter.create(screenName, baseName, className) self.tk.createcommand('tkerror', _tkerror) self.tk.createcommand('exit', _exit) + self.readprofile(baseName, className) def destroy(self): for c in self.children.values(): c.destroy() -## del self.master.children[self._name] self.tk.call('destroy', self._w) def __str__(self): return self._w + def readprofile(self, baseName, className): + import os + if os.environ.has_key('HOME'): home = os.environ['HOME'] + else: home = os.curdir + class_tcl = os.path.join(home, '.%s.tcl' % className) + class_py = os.path.join(home, '.%s.py' % className) + base_tcl = os.path.join(home, '.%s.tcl' % baseName) + base_py = os.path.join(home, '.%s.py' % baseName) + dir = {'self': self} + exec 'from Tkinter import *' in dir + if os.path.isfile(class_tcl): + print 'source', `class_tcl` + self.tk.call('source', class_tcl) + if os.path.isfile(class_py): + print 'execfile', `class_py` + execfile(class_py, dir) + if os.path.isfile(base_tcl): + print 'source', `base_tcl` + self.tk.call('source', base_tcl) + if os.path.isfile(base_py): + print 'execfile', `base_py` + execfile(base_py, dir) class Pack: def config(self, cnf={}): |