commit | 9a85f040dd0eec001083e7e38cfa3e7b9f1bf3b0 | [log] [tgz] |
---|---|---|
author | Martin v. Löwis <martin@v.loewis.de> | Thu Sep 13 18:26:13 2007 +0000 |
committer | Martin v. Löwis <martin@v.loewis.de> | Thu Sep 13 18:26:13 2007 +0000 |
tree | 883d0c1640e69b14a2e0c0c4378404fe4e080b7a | |
parent | fed6bb7d7061f940c4fe4ed43526ea5bbf968de2 [diff] [blame] |
Add 2.5 MSI builder.
diff --git a/Tools/buildbot/getchm.py b/Tools/buildbot/getchm.py new file mode 100644 index 0000000..b09c5b2 --- /dev/null +++ b/Tools/buildbot/getchm.py
@@ -0,0 +1,6 @@ +# We cannot build the documentation on Windows, so download an old +# one instead. +import urllib, os +if not os.path.exists("Doc/python25.chm"): + urllib.urlretrieve("http://www.python.org/ftp/python/2.5.1/Python25.chm", + "Doc/python25.chm")