1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-14 00:59:31 +00:00

[compat] Add compat_input

This commit is contained in:
Sergey M․ 2016-06-05 00:43:55 +07:00
parent 0fc832e1b2
commit 1ae6c83bce
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -482,6 +482,11 @@ if sys.version_info < (3, 0) and sys.platform == 'win32':
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):