diff options
Diffstat (limited to 'Lib/idlelib/EditorWindow.py')
-rw-r--r-- | Lib/idlelib/EditorWindow.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py index ed6b1a1..ef825f1 100644 --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -491,7 +491,7 @@ class EditorWindow(object): self.center() def ispythonsource(self, filename): - if not filename: + if not filename or os.path.isdir(filename): return True base, ext = os.path.splitext(os.path.basename(filename)) if os.path.normcase(ext) in (".py", ".pyw"): @@ -532,6 +532,7 @@ class EditorWindow(object): def rmcolorizer(self): if not self.color: return + self.color.removecolors() self.per.removefilter(self.undo) self.per.removefilter(self.color) self.color = None |