Rename the "browser" module to "BrowserControl", since Guido did not

like the short, ambiguous name.
This commit is contained in:
Fred Drake 2000-05-10 17:28:42 +00:00
parent 8638ace511
commit 6cd948ebd8
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
from Tkinter import * from Tkinter import *
import tkSimpleDialog import tkSimpleDialog
import tkMessageBox import tkMessageBox
import browser import BrowserControl
import idlever import idlever
import WindowList import WindowList
from IdleConf import idleconf from IdleConf import idleconf
@ -298,7 +298,7 @@ def help_dialog(self, event=None):
del fn del fn
def python_docs(self, event=None): def python_docs(self, event=None):
browser.open(self.help_url) BrowserControl.open(self.help_url)
def select_all(self, event=None): def select_all(self, event=None):
self.text.tag_add("sel", "1.0", "end-1c") self.text.tag_add("sel", "1.0", "end-1c")