Staging
v0.8.1
https://github.com/python/cpython
Raw File
Tip revision: 906e26e897b4b2e4b938c65fc4cf9d3b13fa069d authored by Martin v. Löwis on 14 January 2010, 17:41:58 UTC
Prepare for 2.5.5c1.
Tip revision: 906e26e
getchm.py
# 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")
back to top