Message211850
I've found that for the Python2.6.x patch to play nicely with the popular rquests library, I've had to set some defaults on the modified __init__ function so that it reads as follows:
def __init__(self, *args, **kwargs):
_orig_init(self, *args, **kwargs)
self._tunnel_headers = {}
self._tunnel_host = ''
self._tunnel_port = ''
Also seems to work with python 2.6.1. Note: Change the entry condition to:
if os.environ.get('https_proxy', None) and sys.version_info[:2] == (2, 6) : |
|
Date |
User |
Action |
Args |
2014-02-21 11:40:19 | vzafzal | set | recipients:
+ vzafzal, ronaldoussoren, orsenthil, mbeachy, dieresys, tsujikawa, b.a.scott |
2014-02-21 11:40:19 | vzafzal | set | messageid: <1392982819.44.0.0654470198939.issue7291@psf.upfronthosting.co.za> |
2014-02-21 11:40:19 | vzafzal | link | issue7291 messages |
2014-02-21 11:40:18 | vzafzal | create | |
|