Restore accidentally deleted commits
That's what happens if you let Windows machines write :(
This commit is contained in:
parent
b00ca882a4
commit
e0df6211cc
4 changed files with 677 additions and 21 deletions
|
@ -66,6 +66,12 @@ try:
|
|||
except ImportError: # Python 2
|
||||
from urllib2 import HTTPError as compat_HTTPError
|
||||
|
||||
try:
|
||||
from urllib.request import urlretrieve as compat_urlretrieve
|
||||
except ImportError: # Python 2
|
||||
from urllib import urlretrieve as compat_urlretrieve
|
||||
|
||||
|
||||
try:
|
||||
from subprocess import DEVNULL
|
||||
compat_subprocess_get_DEVNULL = lambda: DEVNULL
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue