[Python-checkins] CVS: python/dist/src/Lib/lib-tk Tkinter.py,1.148,1.149

Fred L. Drake python-dev@python.org
Thu, 14 Sep 2000 21:41:25 -0700


Update of /cvsroot/python/python/dist/src/Lib/lib-tk
In directory slayer.i.sourceforge.net:/tmp/cvs-serv3896/Lib/lib-tk

Modified Files:
	Tkinter.py 
Log Message:

Removed some debugging prints:  When running user configuration code
from Tk.readprofile(), do not print anything extra to stdout, just run
the code.


Index: Tkinter.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/lib-tk/Tkinter.py,v
retrieving revision 1.148
retrieving revision 1.149
diff -C2 -r1.148 -r1.149
*** Tkinter.py	2000/09/08 16:28:30	1.148
--- Tkinter.py	2000/09/15 04:41:22	1.149
***************
*** 1531,1544 ****
          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)
      def report_callback_exception(self, exc, val, tb):
--- 1531,1540 ----