diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-12-22 17:13:51 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-12-22 17:13:51 (GMT) |
commit | 335a5128e54809b789cb82f05a913df1198fe40e (patch) | |
tree | ce11198fa8b74db7dfc864c66a8cb5944e2b84ba /Lib/distutils/config.py | |
parent | f20ea1399638d72f8d99df7960cdb31f37a31f81 (diff) | |
download | cpython-335a5128e54809b789cb82f05a913df1198fe40e.zip cpython-335a5128e54809b789cb82f05a913df1198fe40e.tar.gz cpython-335a5128e54809b789cb82f05a913df1198fe40e.tar.bz2 |
Fix TypeError on "setup.py upload --show-response".
Diffstat (limited to 'Lib/distutils/config.py')
-rw-r--r-- | Lib/distutils/config.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/distutils/config.py b/Lib/distutils/config.py index a97635f..7e10fff 100644 --- a/Lib/distutils/config.py +++ b/Lib/distutils/config.py @@ -3,6 +3,7 @@ Provides the PyPIRCCommand class, the base class for the command classes that uses .pypirc in the distutils.command package. """ +import cgi import os from configparser import ConfigParser @@ -101,6 +102,12 @@ class PyPIRCCommand(Command): return {} + def _read_pypi_response(self, response): + """Read and decode a PyPI HTTP response.""" + content_type = response.getheader('content-type', 'text/plain') + encoding = cgi.parse_header(content_type)[1].get('charset', 'ascii') + return response.read().decode(encoding) + def initialize_options(self): """Initialize options.""" self.repository = None |