Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(133)

Side by Side Diff: third_party/oauth2client/MODIFICATIONS.diff

Issue 183793010: Added OAuth2 authentication to apply_issue (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Fixed README Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/oauth2client/LICENSE ('k') | third_party/oauth2client/README.chromium » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 diff --git a/third_party/oauth2client/client.py b/third_party/oauth2client/clien t.py
2 index cd03e38..d82c848 100644
3 --- a/third_party/oauth2client/client.py
4 +++ b/third_party/oauth2client/client.py
5 @@ -23,9 +23,8 @@ import base64
6 import clientsecrets
7 import copy
8 import datetime
9 -import httplib2
10 +from .. import httplib2
11 import logging
12 -import os
13 import sys
14 import time
15 import urllib
16 @@ -35,9 +34,9 @@ from anyjson import simplejson
17
18 HAS_OPENSSL = False
19 try:
20 - from oauth2client.crypt import Signer
Vadim Sh. 2014/03/14 18:56:47 I'm sorry for being extra pedantic, but IIUC this
21 - from oauth2client.crypt import make_signed_jwt
22 - from oauth2client.crypt import verify_signed_jwt_with_certs
23 + from .crypt import Signer
24 + from .crypt import make_signed_jwt
25 + from .crypt import verify_signed_jwt_with_certs
26 HAS_OPENSSL = True
27 except ImportError:
28 pass
OLDNEW
« no previous file with comments | « third_party/oauth2client/LICENSE ('k') | third_party/oauth2client/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698