1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-12-18 07:05:41 +07:00

[compat] Add compat_input

This commit is contained in:
Sergey M․
2016-06-05 00:43:55 +07:00
parent 0fc832e1b2
commit 1ae6c83bce

View File

@@ -482,6 +482,11 @@ def compat_getpass(prompt, *args, **kwargs):
else:
compat_getpass = getpass.getpass
try:
compat_input = raw_input
except NameError: # Python 3
compat_input = input
# Python < 2.6.5 require kwargs to be bytes
try:
def _testfunc(x):