summaryrefslogtreecommitdiffstats
path: root/subcmds/sync.py
diff options
context:
space:
mode:
authorMike Frysinger <vapier@google.com>2019-06-13 02:24:21 -0400
committerMike Frysinger <vapier@google.com>2021-01-06 18:53:58 +0000
commitacf63b28928b33d1335dfed1af7e2d8fc6bb5fc4 (patch)
treee7b65524857d00cec6b36c989659afd1132d15ce /subcmds/sync.py
parent784ccfc040dc8efa1a64d3c7d4070b66beb15d08 (diff)
downloadgit-repo-acf63b28928b33d1335dfed1af7e2d8fc6bb5fc4.tar.gz
drop pyversion & is_python3 checking
We're committed to Python 3 at this point, so purge all the is_python3 related dynamic checks. Bug: https://crbug.com/gerrit/10418 Change-Id: I4c8b405d6de359b8b83223c9f4b9c8ffa18ea1a2 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/292383 Reviewed-by: Chris Mcdonald <cjmcdonald@google.com> Tested-by: Mike Frysinger <vapier@google.com>
Diffstat (limited to 'subcmds/sync.py')
-rw-r--r--subcmds/sync.py25
1 files changed, 5 insertions, 20 deletions
diff --git a/subcmds/sync.py b/subcmds/sync.py
index 1e1f2fc1..3482946d 100644
--- a/subcmds/sync.py
+++ b/subcmds/sync.py
@@ -12,6 +12,7 @@
12# See the License for the specific language governing permissions and 12# See the License for the specific language governing permissions and
13# limitations under the License. 13# limitations under the License.
14 14
15import http.cookiejar as cookielib
15import json 16import json
16import netrc 17import netrc
17from optparse import SUPPRESS_HELP 18from optparse import SUPPRESS_HELP
@@ -22,26 +23,10 @@ import subprocess
22import sys 23import sys
23import tempfile 24import tempfile
24import time 25import time
25 26import urllib.error
26from pyversion import is_python3 27import urllib.parse
27if is_python3(): 28import urllib.request
28 import http.cookiejar as cookielib 29import xmlrpc.client
29 import urllib.error
30 import urllib.parse
31 import urllib.request
32 import xmlrpc.client
33else:
34 import cookielib
35 import imp
36 import urllib2
37 import urlparse
38 import xmlrpclib
39 urllib = imp.new_module('urllib')
40 urllib.error = urllib2
41 urllib.parse = urlparse
42 urllib.request = urllib2
43 xmlrpc = imp.new_module('xmlrpc')
44 xmlrpc.client = xmlrpclib
45 30
46try: 31try:
47 import threading as _threading 32 import threading as _threading