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 martin.panter
Recipients christian.heimes, martin.panter
Date 2016-10-15.23:30:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1476574219.76.0.813969768472.issue27815@psf.upfronthosting.co.za>
In-reply-to
Content
Patch v2 also adds a new attribute to context objects. With this I can work around my Google server bug:

context = ssl.create_default_context(ssl.Purpose.SERVER_AUTH)
context.suppress_ragged_eofs = True
handler = urllib.request.HTTPSHandler(context=context)
urlopen = urllib.request.build_opener(handler).open
urlopen(Request(url="https://accounts.google.com/o/oauth2/token", ...))
History
Date User Action Args
2016-10-15 23:30:20martin.pantersetrecipients: + martin.panter, christian.heimes
2016-10-15 23:30:19martin.pantersetmessageid: <1476574219.76.0.813969768472.issue27815@psf.upfronthosting.co.za>
2016-10-15 23:30:19martin.panterlinkissue27815 messages
2016-10-15 23:30:19martin.pantercreate