We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bd9d0e commit 062ea58Copy full SHA for 062ea58
pythonbrew/downloader.py
@@ -28,4 +28,7 @@ def get_pythonbrew_update_url(version):
28
return PYTHONBREW_UPDATE_URL_PYPI % (version)
29
30
def get_python_version_url(version):
31
- return PYTHON_VERSION_URL.get(version)
+ url = PYTHON_VERSION_URL.get(version)
32
+ if not url:
33
+ url = "http://www.python.org/ftp/python/%s/Python-%s.tgz" % (version, version)
34
+ return url
0 commit comments