Some long overdue maintainance. Made all IDE sources 7-bit-clean, to avoid any further encoding conversion troubles.

This commit is contained in:
Just van Rossum 2001-06-19 21:37:33 +00:00
parent 9020bcebc8
commit dc3c617cb8
14 changed files with 86 additions and 84 deletions

View file

@ -14,9 +14,9 @@ def __init__(self):
#self.window.bevelbox = W.BevelBox((0, 0, 0, 56))
self.window.openbutton = W.Button((10, 8, 80, 16), "Open", self.openbuttonhit)
self.window.browsebutton = W.Button((100, 8, 80, 16), "Browseƒ", self.browsebuttonhit)
self.window.browsebutton = W.Button((100, 8, 80, 16), "Browse\xc9", self.browsebuttonhit)
self.window.reloadbutton = W.Button((10, 32, 80, 16), "Reload", self.reloadbuttonhit)
self.window.openotherbutton = W.Button((100, 32, 80, 16), "Open otherƒ", self.openother)
self.window.openotherbutton = W.Button((100, 32, 80, 16), "Open other\xc9", self.openother)
self.window.openbutton.enable(0)
self.window.reloadbutton.enable(0)
@ -81,7 +81,7 @@ def openbuttonhit(self):
file, path, description = imp.find_module(modname)
except ImportError:
W.SetCursor("arrow")
W.Message("CanÕt find file for module %s."
W.Message("Can't find file for module '%s'."
% modname)
else:
self.openscript(path, modname)
@ -93,7 +93,7 @@ def openscript(self, path, modname):
elif path[-4:] in ['.pyc', '.pyo']:
W.getapplication().openscript(path[:-1], modname=modname)
else:
W.Message("CanÕt edit %s; it might be a shared library or a .pyc file."
W.Message("Can't edit '%s'; it might be a shared library or a .pyc file."
% modname)
def openother(self):
@ -106,9 +106,9 @@ def openother(self):
file, path, description = imp.find_module(modname)
except ImportError:
if modname in sys.builtin_module_names:
alerttext = "%s” is a builtin module, which you canÕt edit." % modname
alerttext = "'%s' is a builtin module, which you can't edit." % modname
else:
alerttext = "No module named %s." % modname
alerttext = "No module named '%s'." % modname
raise W.AlertError, alerttext
self.openscript(path, modname)