This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author thehesiod
Recipients ned.deily, thehesiod
Date 2016-10-03.17:34:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1475516079.28.0.787544430097.issue28342@psf.upfronthosting.co.za>
In-reply-to
Content
ya I did a monkey patch which resolved it.

if sys.platform == 'darwin':
    import botocore.vendored.requests.utils, urllib.request
    botocore.vendored.requests.utils.proxy_bypass = urllib.request.proxy_bypass_environment
    botocore.vendored.requests.utils.getproxies = urllib.request.getproxies_environment

    urllib.request.proxy_bypass = urllib.request.proxy_bypass_environment
    urllib.request.getproxies = urllib.request.getproxies_environment
History
Date User Action Args
2016-10-03 17:34:39thehesiodsetrecipients: + thehesiod, ned.deily
2016-10-03 17:34:39thehesiodsetmessageid: <1475516079.28.0.787544430097.issue28342@psf.upfronthosting.co.za>
2016-10-03 17:34:39thehesiodlinkissue28342 messages
2016-10-03 17:34:39thehesiodcreate