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
904a2ef2
Commit
904a2ef2
authored
Jun 10, 2016
by
Berker Peksag
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #20900: distutils register command now decodes HTTP responses correctly
Initial patch by ingrid.
parent
87a8bcc2
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
4 deletions
+21
-4
Lib/distutils/command/register.py
Lib/distutils/command/register.py
+3
-3
Lib/distutils/tests/test_register.py
Lib/distutils/tests/test_register.py
+14
-0
Lib/distutils/tests/test_upload.py
Lib/distutils/tests/test_upload.py
+1
-1
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/distutils/command/register.py
View file @
904a2ef2
...
...
@@ -296,9 +296,9 @@ Your selection [default 1]: ''', log.INFO)
result
=
500
,
str
(
e
)
else
:
if
self
.
show_response
:
data
=
result
.
read
(
)
data
=
self
.
_read_pypi_response
(
result
)
result
=
200
,
'OK'
if
self
.
show_response
:
dashes
=
'-'
*
75
self
.
announce
(
'%s%r%s'
%
(
dashes
,
data
,
dashes
)
)
msg
=
'
\
n
'
.
join
((
'-'
*
75
,
data
,
'-'
*
75
))
self
.
announce
(
msg
,
log
.
INFO
)
return
result
Lib/distutils/tests/test_register.py
View file @
904a2ef2
...
...
@@ -301,6 +301,20 @@ class RegisterTestCase(PyPIRCCommandTestCase):
results
=
self
.
get_logs
(
INFO
)
self
.
assertEqual
(
results
,
[
'running check'
,
'xxx'
])
def
test_show_response
(
self
):
# test that the --show-response option return a well formatted response
cmd
=
self
.
_get_cmd
()
inputs
=
Inputs
(
'1'
,
'tarek'
,
'y'
)
register_module
.
input
=
inputs
.
__call__
cmd
.
show_response
=
1
try
:
cmd
.
run
()
finally
:
del
register_module
.
input
results
=
self
.
get_logs
(
INFO
)
self
.
assertEqual
(
results
[
3
],
75
*
'-'
+
'
\
n
xxx
\
n
'
+
75
*
'-'
)
def
test_suite
():
return
unittest
.
makeSuite
(
RegisterTestCase
)
...
...
Lib/distutils/tests/test_upload.py
View file @
904a2ef2
...
...
@@ -140,7 +140,7 @@ class uploadTestCase(PyPIRCCommandTestCase):
# The PyPI response body was echoed
results
=
self
.
get_logs
(
INFO
)
self
.
assert
In
(
'xyzzy
\
n
'
,
results
[
-
1
]
)
self
.
assert
Equal
(
results
[
-
1
],
75
*
'-'
+
'
\
n
xyzzy
\
n
'
+
75
*
'-'
)
def
test_upload_fails
(
self
):
self
.
next_msg
=
"Not Found"
...
...
Misc/NEWS
View file @
904a2ef2
...
...
@@ -139,6 +139,9 @@ Core and Builtins
Library
-------
- Issue #20900: distutils register command now decodes HTTP responses
correctly. Initial patch by ingrid.
- A new version of typing.py provides several new classes and
features: @overload outside stubs, Reversible, DefaultDict, Text,
ContextManager, Type[], NewType(), TYPE_CHECKING, and numerous bug
...
...
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