https://github.com/python/cpython
Raw File
Tip revision: a3cc6d81efacad61e24a7b962987a9ecae711c56 authored by Martin v. Löwis on 21 February 2008, 11:54:20 UTC
Redo tag.
Tip revision: a3cc6d8
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