mirror of
https://github.com/explosion/spaCy.git
synced 2025-02-04 21:50:35 +03:00
Fix urllib for Python 3
This commit is contained in:
parent
b5098079d8
commit
83146458a2
|
@ -34,7 +34,7 @@ except ImportError:
|
|||
from thinc.neural.optimizers import Adam as Optimizer
|
||||
|
||||
try:
|
||||
import urllib
|
||||
import urllib.request
|
||||
except ImportError:
|
||||
import urllib2 as urllib
|
||||
|
||||
|
@ -48,7 +48,6 @@ copy_reg = copy_reg
|
|||
CudaStream = CudaStream
|
||||
cupy = cupy
|
||||
copy_array = copy_array
|
||||
urllib = urllib
|
||||
izip = getattr(itertools, 'izip', zip)
|
||||
|
||||
is_windows = sys.platform.startswith('win')
|
||||
|
|
Loading…
Reference in New Issue
Block a user