aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/compat.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-05-09 21:55:03 +0600
committerSergey M․ <dstftw@gmail.com>2016-05-09 21:55:03 +0600
commitfe40f9eef2483748ed83c9749f35220143d8cc9b (patch)
treee816c0816891d9b80bf8f9f462e978e6627284e9 /youtube_dl/compat.py
parent6104cc2985c36e996df1aae7cfcc686f3bae0b82 (diff)
downloadyoutube-dl-fe40f9eef2483748ed83c9749f35220143d8cc9b.tar.xz
[compat] Add compat_setenv
Diffstat (limited to 'youtube_dl/compat.py')
-rw-r--r--youtube_dl/compat.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/youtube_dl/compat.py b/youtube_dl/compat.py
index 0b6c5ca7a..12b53cdc8 100644
--- a/youtube_dl/compat.py
+++ b/youtube_dl/compat.py
@@ -373,6 +373,9 @@ compat_os_name = os._name if os.name == 'java' else os.name
if sys.version_info >= (3, 0):
compat_getenv = os.getenv
compat_expanduser = os.path.expanduser
+
+ def compat_setenv(key, value, env=os.environ):
+ env[key] = value
else:
# Environment variables should be decoded with filesystem encoding.
# Otherwise it will fail if any non-ASCII characters present (see #3854 #3217 #2918)
@@ -384,6 +387,12 @@ else:
env = env.decode(get_filesystem_encoding())
return env
+ def compat_setenv(key, value, env=os.environ):
+ def encode(v):
+ from .utils import get_filesystem_encoding
+ return v.encode(get_filesystem_encoding()) if isinstance(v, compat_str) else v
+ env[encode(key)] = encode(value)
+
# HACK: The default implementations of os.path.expanduser from cpython do not decode
# environment variables with filesystem encoding. We will work around this by
# providing adjusted implementations.
@@ -604,6 +613,7 @@ __all__ = [
'compat_os_name',
'compat_parse_qs',
'compat_print',
+ 'compat_setenv',
'compat_shlex_split',
'compat_socket_create_connection',
'compat_str',