mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Issue #12226: HTTPS is now used by default when connecting to PyPI.
This commit is contained in:
commit
e8d07a9885
4 changed files with 7 additions and 5 deletions
|
@ -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():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue