From: Fred Drake Date: Wed, 10 May 2000 17:28:42 +0000 (+0000) Subject: Rename the "browser" module to "BrowserControl", since Guido did not X-Git-Tag: v2.0b1~1774 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6cd948ebd8d582c13894b3cc7925ef305808210d;p=thirdparty%2FPython%2Fcpython.git Rename the "browser" module to "BrowserControl", since Guido did not like the short, ambiguous name. --- diff --git a/Tools/idle/browser.py b/Tools/idle/BrowserControl.py similarity index 100% rename from Tools/idle/browser.py rename to Tools/idle/BrowserControl.py diff --git a/Tools/idle/EditorWindow.py b/Tools/idle/EditorWindow.py index 151611876421..53f2520545d4 100644 --- a/Tools/idle/EditorWindow.py +++ b/Tools/idle/EditorWindow.py @@ -6,7 +6,7 @@ import imp from Tkinter import * import tkSimpleDialog import tkMessageBox -import browser +import BrowserControl import idlever import WindowList from IdleConf import idleconf @@ -298,7 +298,7 @@ class EditorWindow: del fn def python_docs(self, event=None): - browser.open(self.help_url) + BrowserControl.open(self.help_url) def select_all(self, event=None): self.text.tag_add("sel", "1.0", "end-1c")