summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/lib-tk/Tkinter.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py
index 3a7b8c0..523db9e 100644
--- a/Lib/lib-tk/Tkinter.py
+++ b/Lib/lib-tk/Tkinter.py
@@ -867,7 +867,8 @@ class Tk(Misc, Wm):
import sys, os
baseName = os.path.basename(sys.argv[0])
baseName, ext = os.path.splitext(baseName)
- if ext not in ('.py', 'pyc'): baseName = baseName + ext
+ if ext not in ('.py', '.pyc', '.pyo'):
+ baseName = baseName + ext
self.tk = _tkinter.create(screenName, baseName, className)
if _MacOS:
# Disable event scanning except for Command-Period