mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 10:41:31 +00:00
Drop py2 support in gerrit and git related files
python3 is the only supported version of python in depot_tools. Bug: 1475402 Change-Id: Ie4ee18d297081b3aa0206b8d7ce6461819bff0ca Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/4809560 Reviewed-by: Josip Sokcevic <sokcevic@chromium.org> Commit-Queue: Gavin Mak <gavinmak@google.com>
This commit is contained in:
15
git_cache.py
15
git_cache.py
@@ -5,10 +5,7 @@
|
||||
|
||||
"""A git command for managing a local cache of git repositories."""
|
||||
|
||||
from __future__ import print_function
|
||||
|
||||
import contextlib
|
||||
import errno
|
||||
import logging
|
||||
import optparse
|
||||
import os
|
||||
@@ -18,11 +15,7 @@ import sys
|
||||
import tempfile
|
||||
import threading
|
||||
import time
|
||||
|
||||
try:
|
||||
import urlparse
|
||||
except ImportError: # For Py3 compatibility
|
||||
import urllib.parse as urlparse
|
||||
import urllib.parse
|
||||
|
||||
from download_from_google_storage import Gsutil
|
||||
import gclient_utils
|
||||
@@ -142,7 +135,7 @@ class Mirror(object):
|
||||
b = os.getenv('OVERRIDE_BOOTSTRAP_BUCKET')
|
||||
if b:
|
||||
return b
|
||||
u = urlparse.urlparse(self.url)
|
||||
u = urllib.parse.urlparse(self.url)
|
||||
if u.netloc == 'chromium.googlesource.com':
|
||||
return 'chromium-git-cache'
|
||||
# Not recognized.
|
||||
@@ -164,7 +157,7 @@ class Mirror(object):
|
||||
url = os.path.splitdrive(url)[1]
|
||||
return url.replace('-', '--').replace(os.sep, '-')
|
||||
|
||||
parsed = urlparse.urlparse(url)
|
||||
parsed = urllib.parse.urlparse(url)
|
||||
norm_url = parsed.netloc + parsed.path
|
||||
if norm_url.endswith('.git'):
|
||||
norm_url = norm_url[:-len('.git')]
|
||||
@@ -359,7 +352,7 @@ class Mirror(object):
|
||||
|
||||
def supported_project(self):
|
||||
"""Returns true if this repo is known to have a bootstrap zip file."""
|
||||
u = urlparse.urlparse(self.url)
|
||||
u = urllib.parse.urlparse(self.url)
|
||||
return u.netloc in [
|
||||
'chromium.googlesource.com',
|
||||
'chrome-internal.googlesource.com']
|
||||
|
||||
Reference in New Issue
Block a user