]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Helpwin.__init__(): Removed an unused local variable (via import)
authorBarry Warsaw <barry@python.org>
Wed, 18 Apr 2001 03:50:07 +0000 (03:50 +0000)
committerBarry Warsaw <barry@python.org>
Wed, 18 Apr 2001 03:50:07 +0000 (03:50 +0000)
reported by PyChecker.

Tools/pynche/PyncheWidget.py

index 4cddff1771e92d19a0ba6dda1abfd8d30f46d427..a7a0666ee9addd243b26ddba3610fb8fe87f0f90 100644 (file)
@@ -203,7 +203,7 @@ Unrecognized color file type in file:
 \f
 class Helpwin:
     def __init__(self, master, quitfunc):
-        from Main import __version__, docstring
+        from Main import docstring
         self.__root = root = Toplevel(master, class_='Pynche')
         root.protocol('WM_DELETE_WINDOW', self.__withdraw)
         root.title('Pynche Help Window')