[Python-checkins] python/dist/src/Tools/idle IOBinding.py,1.10,1.11 PyShell.py,1.40,1.41

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Thu, 12 Sep 2002 13:34:43 -0700


Update of /cvsroot/python/python/dist/src/Tools/idle
In directory usw-pr-cvs1:/tmp/cvs-serv22779

Modified Files:
	IOBinding.py PyShell.py 
Log Message:
Remove unused local variables

Index: IOBinding.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/idle/IOBinding.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** IOBinding.py	23 Aug 2002 18:19:30 -0000	1.10
--- IOBinding.py	12 Sep 2002 20:34:41 -0000	1.11
***************
*** 277,281 ****
  
      def print_window(self, event):
-         tempfilename = None
          if self.get_saved():
              filename = self.filename
--- 277,280 ----

Index: PyShell.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/idle/PyShell.py,v
retrieving revision 1.40
retrieving revision 1.41
diff -C2 -d -r1.40 -r1.41
*** PyShell.py	11 Sep 2002 20:36:01 -0000	1.40
--- PyShell.py	12 Sep 2002 20:34:41 -0000	1.41
***************
*** 251,255 ****
      def showtraceback(self):
          # Extend base class method to reset output properly
-         text = self.tkconsole.text
          self.tkconsole.resetoutput()
          self.checklinecache()
--- 251,254 ----