Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
news
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Sartika Aritonang
news
Commits
74eeb5b3
Commit
74eeb5b3
authored
May 29, 2020
by
Sartika Aritonang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upload New File
parent
f460b0e1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
0 deletions
+44
-0
xmlrpc.py
stbi/Lib/site-packages/pip/_internal/network/xmlrpc.py
+44
-0
No files found.
stbi/Lib/site-packages/pip/_internal/network/xmlrpc.py
0 → 100644
View file @
74eeb5b3
"""xmlrpclib.Transport implementation
"""
# The following comment should be removed at some point in the future.
# mypy: disallow-untyped-defs=False
import
logging
from
pip._vendor
import
requests
# NOTE: XMLRPC Client is not annotated in typeshed as on 2017-07-17, which is
# why we ignore the type on this import
from
pip._vendor.six.moves
import
xmlrpc_client
# type: ignore
from
pip._vendor.six.moves.urllib
import
parse
as
urllib_parse
logger
=
logging
.
getLogger
(
__name__
)
class
PipXmlrpcTransport
(
xmlrpc_client
.
Transport
):
"""Provide a `xmlrpclib.Transport` implementation via a `PipSession`
object.
"""
def
__init__
(
self
,
index_url
,
session
,
use_datetime
=
False
):
xmlrpc_client
.
Transport
.
__init__
(
self
,
use_datetime
)
index_parts
=
urllib_parse
.
urlparse
(
index_url
)
self
.
_scheme
=
index_parts
.
scheme
self
.
_session
=
session
def
request
(
self
,
host
,
handler
,
request_body
,
verbose
=
False
):
parts
=
(
self
.
_scheme
,
host
,
handler
,
None
,
None
,
None
)
url
=
urllib_parse
.
urlunparse
(
parts
)
try
:
headers
=
{
'Content-Type'
:
'text/xml'
}
response
=
self
.
_session
.
post
(
url
,
data
=
request_body
,
headers
=
headers
,
stream
=
True
)
response
.
raise_for_status
()
self
.
verbose
=
verbose
return
self
.
parse_response
(
response
.
raw
)
except
requests
.
HTTPError
as
exc
:
logger
.
critical
(
"HTTP error
%
s while getting
%
s"
,
exc
.
response
.
status_code
,
url
,
)
raise
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