mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 23:25:06 +00:00
[compat] Introduce compat_integer_types
This commit is contained in:
parent
8ba84e4600
commit
075a13d3e9
1 changed files with 7 additions and 0 deletions
|
@ -2787,6 +2787,12 @@ def compat_kwargs(kwargs):
|
||||||
compat_numeric_types = (int, float, complex)
|
compat_numeric_types = (int, float, complex)
|
||||||
|
|
||||||
|
|
||||||
|
try:
|
||||||
|
compat_integer_types = (int, long)
|
||||||
|
except NameError: # Python 3
|
||||||
|
compat_integer_types = (int, )
|
||||||
|
|
||||||
|
|
||||||
if sys.version_info < (2, 7):
|
if sys.version_info < (2, 7):
|
||||||
def compat_socket_create_connection(address, timeout, source_address=None):
|
def compat_socket_create_connection(address, timeout, source_address=None):
|
||||||
host, port = address
|
host, port = address
|
||||||
|
@ -2974,6 +2980,7 @@ def compat_ctypes_WINFUNCTYPE(*args, **kwargs):
|
||||||
'compat_http_client',
|
'compat_http_client',
|
||||||
'compat_http_server',
|
'compat_http_server',
|
||||||
'compat_input',
|
'compat_input',
|
||||||
|
'compat_integer_types',
|
||||||
'compat_itertools_count',
|
'compat_itertools_count',
|
||||||
'compat_kwargs',
|
'compat_kwargs',
|
||||||
'compat_numeric_types',
|
'compat_numeric_types',
|
||||||
|
|
Loading…
Reference in a new issue