summaryrefslogtreecommitdiffstats
path: root/Tools/pynche
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2001-04-18 03:50:07 (GMT)
committerBarry Warsaw <barry@python.org>2001-04-18 03:50:07 (GMT)
commit6a5522677a5325b333ef687e396f2b66ed52efa6 (patch)
treedace4748d0fd40e3b6caeb08769532d7a94c0658 /Tools/pynche
parentcc8a60cdf61307eeab7ecd7bb8795728373efdfe (diff)
downloadcpython-6a5522677a5325b333ef687e396f2b66ed52efa6.zip
cpython-6a5522677a5325b333ef687e396f2b66ed52efa6.tar.gz
cpython-6a5522677a5325b333ef687e396f2b66ed52efa6.tar.bz2
Helpwin.__init__(): Removed an unused local variable (via import)
reported by PyChecker.
Diffstat (limited to 'Tools/pynche')
-rw-r--r--Tools/pynche/PyncheWidget.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/pynche/PyncheWidget.py b/Tools/pynche/PyncheWidget.py
index 4cddff1..a7a0666 100644
--- a/Tools/pynche/PyncheWidget.py
+++ b/Tools/pynche/PyncheWidget.py
@@ -203,7 +203,7 @@ Unrecognized color file type in file:
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')