diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-12-22 00:35:53 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-12-22 00:35:53 (GMT) |
commit | f60b7df9f8dd1df21921aa124a30bfd4fe9714b2 (patch) | |
tree | 2bb028a2d331b5903749100abd1bad16ac7dde63 /Lib/distutils/config.py | |
parent | ee7f3fc58639854317dd5fa1b95c4b199e35c035 (diff) | |
download | cpython-f60b7df9f8dd1df21921aa124a30bfd4fe9714b2.zip cpython-f60b7df9f8dd1df21921aa124a30bfd4fe9714b2.tar.gz cpython-f60b7df9f8dd1df21921aa124a30bfd4fe9714b2.tar.bz2 |
Issue #12226: HTTPS is now used by default when connecting to PyPI.
Diffstat (limited to 'Lib/distutils/config.py')
-rw-r--r-- | Lib/distutils/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/config.py b/Lib/distutils/config.py index 1fd5334..a97635f 100644 --- a/Lib/distutils/config.py +++ b/Lib/distutils/config.py @@ -21,7 +21,7 @@ password:%s class PyPIRCCommand(Command): """Base command that knows how to handle the .pypirc file """ - DEFAULT_REPOSITORY = 'http://pypi.python.org/pypi' + DEFAULT_REPOSITORY = 'https://pypi.python.org/pypi' DEFAULT_REALM = 'pypi' repository = None realm = None |