Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
e8d07a98
Commit
e8d07a98
authored
Dec 22, 2013
by
Antoine Pitrou
Browse files
Options
Browse Files
Download
Plain Diff
Issue #12226: HTTPS is now used by default when connecting to PyPI.
parents
67834877
f60b7df9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
5 deletions
+7
-5
Lib/distutils/config.py
Lib/distutils/config.py
+1
-1
Lib/distutils/tests/test_config.py
Lib/distutils/tests/test_config.py
+2
-2
Lib/distutils/tests/test_upload.py
Lib/distutils/tests/test_upload.py
+2
-2
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/distutils/config.py
View file @
e8d07a98
...
...
@@ -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
=
'http
s
://pypi.python.org/pypi'
DEFAULT_REALM
=
'pypi'
repository
=
None
realm
=
None
...
...
Lib/distutils/tests/test_config.py
View file @
e8d07a98
...
...
@@ -87,7 +87,7 @@ class PyPIRCCommandTestCase(support.TempdirManager,
config
=
list
(
sorted
(
config
.
items
()))
waited
=
[(
'password'
,
'secret'
),
(
'realm'
,
'pypi'
),
(
'repository'
,
'http://pypi.python.org/pypi'
),
(
'repository'
,
'http
s
://pypi.python.org/pypi'
),
(
'server'
,
'server1'
),
(
'username'
,
'me'
)]
self
.
assertEqual
(
config
,
waited
)
...
...
@@ -96,7 +96,7 @@ class PyPIRCCommandTestCase(support.TempdirManager,
config
=
cmd
.
_read_pypirc
()
config
=
list
(
sorted
(
config
.
items
()))
waited
=
[(
'password'
,
'secret'
),
(
'realm'
,
'pypi'
),
(
'repository'
,
'http://pypi.python.org/pypi'
),
(
'repository'
,
'http
s
://pypi.python.org/pypi'
),
(
'server'
,
'server-login'
),
(
'username'
,
'tarek'
)]
self
.
assertEqual
(
config
,
waited
)
...
...
Lib/distutils/tests/test_upload.py
View file @
e8d07a98
...
...
@@ -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'
,
'http
s
://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'
)
'http
s
://pypi.python.org/pypi'
)
self
.
assertIn
(
b'xxx'
,
self
.
last_open
.
req
.
data
)
def
test_suite
():
...
...
Misc/NEWS
View file @
e8d07a98
...
...
@@ -29,6 +29,8 @@ Core and Builtins
Library
-------
- Issue #12226: HTTPS is now used by default when connecting to PyPI.
- Issue #20045: Fix "setup.py register --list-classifiers".
- Issue #18879: When a method is looked up on a temporary file, avoid closing
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment