mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[compat] Use try except for compat_numeric_types
This commit is contained in:
parent
db182c63fb
commit
831217291a
1 changed files with 4 additions and 2 deletions
|
@ -2760,8 +2760,10 @@ def compat_kwargs(kwargs):
|
|||
compat_kwargs = lambda kwargs: kwargs
|
||||
|
||||
|
||||
compat_numeric_types = ((int, float, long, complex) if sys.version_info[0] < 3
|
||||
else (int, float, complex))
|
||||
try:
|
||||
compat_numeric_types = (int, float, long, complex)
|
||||
except NameError: # Python 3
|
||||
compat_numeric_types = (int, float, complex)
|
||||
|
||||
|
||||
if sys.version_info < (2, 7):
|
||||
|
|
Loading…
Reference in a new issue