[Python-checkins] CVS: python/dist/src/Tools/pynche PyncheWidget.py,2.25,2.26

Barry Warsaw bwarsaw@users.sourceforge.net
Tue, 17 Apr 2001 20:50:09 -0700


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

Modified Files:
	PyncheWidget.py 
Log Message:
Helpwin.__init__(): Removed an unused local variable (via import)
reported by PyChecker.


Index: PyncheWidget.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/pynche/PyncheWidget.py,v
retrieving revision 2.25
retrieving revision 2.26
diff -C2 -r2.25 -r2.26
*** PyncheWidget.py	1999/07/06 22:00:52	2.25
--- PyncheWidget.py	2001/04/18 03:50:07	2.26
***************
*** 204,208 ****
  class Helpwin:
      def __init__(self, master, quitfunc):
!         from Main import __version__, docstring
          self.__root = root = Toplevel(master, class_='Pynche')
          root.protocol('WM_DELETE_WINDOW', self.__withdraw)
--- 204,208 ----
  class Helpwin:
      def __init__(self, master, quitfunc):
!         from Main import docstring
          self.__root = root = Toplevel(master, class_='Pynche')
          root.protocol('WM_DELETE_WINDOW', self.__withdraw)