Issue #12226: HTTPS is now used by default when connecting to PyPI.

This commit is contained in:
Antoine Pitrou 2013-12-22 01:45:42 +01:00
commit e8d07a9885
4 changed files with 7 additions and 5 deletions

View file

@ -77,7 +77,7 @@ class uploadTestCase(PyPIRCCommandTestCase):
cmd.finalize_options()
for attr, waited in (('username', 'me'), ('password', 'secret'),
('realm', 'pypi'),
('repository', 'http://pypi.python.org/pypi')):
('repository', 'https://pypi.python.org/pypi')):
self.assertEqual(getattr(cmd, attr), waited)
def test_saved_password(self):
@ -117,7 +117,7 @@ class uploadTestCase(PyPIRCCommandTestCase):
self.assertTrue(headers['Content-type'].startswith('multipart/form-data'))
self.assertEqual(self.last_open.req.get_method(), 'POST')
self.assertEqual(self.last_open.req.get_full_url(),
'http://pypi.python.org/pypi')
'https://pypi.python.org/pypi')
self.assertIn(b'xxx', self.last_open.req.data)
def test_suite():