summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/config.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-12-22 00:35:53 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-12-22 00:35:53 (GMT)
commitf60b7df9f8dd1df21921aa124a30bfd4fe9714b2 (patch)
tree2bb028a2d331b5903749100abd1bad16ac7dde63 /Lib/distutils/config.py
parentee7f3fc58639854317dd5fa1b95c4b199e35c035 (diff)
downloadcpython-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.py2
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