mirror of
https://github.com/python/cpython.git
synced 2025-10-02 21:25:24 +00:00
Fix tkinter regression introduced by the security fix in #16248.
This commit is contained in:
parent
86d53cadda
commit
db4309e19a
1 changed files with 1 additions and 1 deletions
|
@ -1722,7 +1722,7 @@ class Tk(Misc, Wm):
|
|||
# ensure that self.tk is always _something_.
|
||||
self.tk = None
|
||||
if baseName is None:
|
||||
import sys, os
|
||||
import os
|
||||
baseName = os.path.basename(sys.argv[0])
|
||||
baseName, ext = os.path.splitext(baseName)
|
||||
if ext not in ('.py', '.pyc', '.pyo'):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue