Lines Matching +full:python +full:- +full:format
4 # py -3 purge.py 3.5.1rc1
7 __author__ = 'Steve Dower <steve.dower@python.org>'
15 VERSION_RE = re.compile(r'(\d+\.\d+\.\d+)([A-Za-z_]+\d+)?$')
27 URL = "https://www.python.org/ftp/python/{}/".format(m.group(1))
54 "Windows6.0-KB2999226-x64.msu",
55 "Windows6.0-KB2999226-x86.msu",
56 "Windows6.1-KB2999226-x64.msu",
57 "Windows6.1-KB2999226-x86.msu",
58 "Windows8.1-KB2999226-x64.msu",
59 "Windows8.1-KB2999226-x86.msu",
60 "Windows8-RT-KB2999226-x64.msu",
61 "Windows8-RT-KB2999226-x86.msu",
64 "python-{}.exe".format(m.group(0)),
65 "python-{}-webinstall.exe".format(m.group(0)),
66 "python-{}-amd64.exe".format(m.group(0)),
67 "python-{}-amd64-webinstall.exe".format(m.group(0)),
68 "python-{}-arm64.exe".format(m.group(0)),
69 "python-{}-arm64-webinstall.exe".format(m.group(0)),
70 "python-{}-embed-amd64.zip".format(m.group(0)),
71 "python-{}-embed-win32.zip".format(m.group(0)),
72 "python-{}-embed-arm64.zip".format(m.group(0)),
73 *["win32{}/{}".format(REL, f) for f in FILES],
74 *["amd64{}/{}".format(REL, f) for f in FILES],
75 *["arm64{}/{}".format(REL, f) for f in FILES],
82 with urlopen(Request(u, method='PURGE', headers={'Fastly-Soft-Purge': 1})) as r: