Kaynağa Gözat

Python compat - urllib

Differential Revision: https://reviews.llvm.org/D56261

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@350315 91177308-0d34-0410-b5e6-96231b3b80d8
Serge Guelton 6 yıl önce
ebeveyn
işleme
9f3acd1159
1 değiştirilmiş dosya ile 6 ekleme ve 2 silme
  1. 6 2
      utils/unicode-case-fold.py

+ 6 - 2
utils/unicode-case-fold.py

@@ -21,7 +21,11 @@ from __future__ import print_function
 
 
 import sys
 import sys
 import re
 import re
-import urllib2
+try:
+    from urllib.request import urlopen
+except ImportError:
+    from urllib2 import urlopen
+
 
 
 # This variable will body of the mappings function
 # This variable will body of the mappings function
 body = ""
 body = ""
@@ -95,7 +99,7 @@ def dump_block(b):
     body += pattern.format(last, stride(b), modulo, shift(b[0]))
     body += pattern.format(last, stride(b), modulo, shift(b[0]))
 
 
 current_block = []
 current_block = []
-f = urllib2.urlopen(sys.argv[1])
+f = urlopen(sys.argv[1])
 for m in mappings(f):
 for m in mappings(f):
     if len(current_block) == 0:
     if len(current_block) == 0:
         current_block.append(m)
         current_block.append(m)