mirror of
https://github.com/python/cpython.git
synced 2025-08-22 09:45:06 +00:00
6 lines
249 B
Python
6 lines
249 B
Python
# 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")
|