summaryrefslogtreecommitdiffstats
path: root/Tools/msi
diff options
context:
space:
mode:
authorZachary Ware <zach@python.org>2023-05-27 17:34:19 (GMT)
committerGitHub <noreply@github.com>2023-05-27 17:34:19 (GMT)
commita989b73e8ebf869dcc71d06127e8797c92260a0f (patch)
treefdfddb9a77864b2c0d61451e012bc3181d23faba /Tools/msi
parent86d8f489359b8f6cc15006bdcbd70521ce621fbb (diff)
downloadcpython-a989b73e8ebf869dcc71d06127e8797c92260a0f.zip
cpython-a989b73e8ebf869dcc71d06127e8797c92260a0f.tar.gz
cpython-a989b73e8ebf869dcc71d06127e8797c92260a0f.tar.bz2
gh-75552: Remove deprecated tkinter.tix module (GH-104902)
Diffstat (limited to 'Tools/msi')
-rw-r--r--Tools/msi/purge.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/msi/purge.py b/Tools/msi/purge.py
index de9fdc9..e25219a 100644
--- a/Tools/msi/purge.py
+++ b/Tools/msi/purge.py
@@ -10,7 +10,7 @@ __version__ = '1.0.0'
import re
import sys
-from urllib.request import *
+from urllib.request import Request, urlopen
VERSION_RE = re.compile(r'(\d+\.\d+\.\d+)([A-Za-z_]+\d+)?$')