-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Making regression3 pass #756
Conversation
Fix googleapis/oauth2client#125 was pushed in 1.4.7 release.
- Incorporates changes from googleapis#724. - Also requires httplib2 from HEAD since the bytes/unicode header issues have not been released on PyPI yet.
@tseaver PTAL |
(response['content-type'], content)) | ||
|
||
message = parser.parsestr(faux_message) | ||
if not isinstance(content, six.binary_type): |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
- Adding test for branch miss in credentials._get_signed_query_params - Making storage.batch._unpack_batch_response work correctly in Python2 and Python3 (parser expects str in both) NOTE: Yet again %s caused issues between Py2 and Py3 (as in the PR googleapis#126 in oauth2client).
1b94f9f
to
fdb1d23
Compare
LGTM, module adding the comment to |
@tseaver I made a new commit from my phone. PTAL and then I'll merge if Travis passes. |
LGTM |
@tseaver should we add |
SGTM |
oauth2client
which incorporates Fixing JSON key service account assertions in Python3. oauth2client#126HEAD
inhttplib2
until Update __init__.py jcgregorio/httplib2#291 and Added unit test for #291 jcgregorio/httplib2#296 are incorporatedstorage.batch._unpack_batch_response
to straddle Py2/Py3. The email nativestr
dependency is tricky there.str
is insufficient in Py3NOTE: As in googleapis/oauth2client#126, using
%s
for a Py2 and Py3 codebase caused us issues in_unpack_batch_response