diff -r d21e7f948b8b add-to-pydotorg.py --- a/add-to-pydotorg.py Tue Jan 06 22:54:14 2015 +0100 +++ b/add-to-pydotorg.py Mon Feb 09 09:49:48 2015 -0800 @@ -53,7 +53,13 @@ (rx(r'\.tar\.xz$'), ('XZ compressed source tarball', 3, '')), (rx(r'\.amd64\.msi$'), ('Windows x86-64 MSI installer', 1, 'for AMD64/EM64T/x64, not Itanium processors')), + (rx(r'\.amd64\.webinstall\.exe$'), ('Windows x86-64 web-based installer', 1, + 'for AMD64/EM64T/x64, not Itanium processors')), + (rx(r'\.amd64\.exe$'), ('Windows x86-64 executable installer', 1, + 'for AMD64/EM64T/x64, not Itanium processors')), (rx(r'\.msi$'), ('Windows x86 MSI installer', 1, '')), + (rx(r'\.webinstall\.exe$'), ('Windows x86 web-based installer', 1, '')), + (rx(r'\.exe$'), ('Windows x86 executable installer', 1, '')), (rx(r'\.chm$'), ('Windows help file', 1, '')), (rx(r'amd64-pdb\.zip$'), ('Windows debug information files for 64-bit binaries', 1, '')), (rx(r'-pdb\.zip$'), ('Windows debug information files', 1, '')),