SolarFM/plugins/youtube_download/yt_dlp/utils/_deprecated.py

32 lines
735 B
Python
Raw Normal View History

2023-08-14 01:13:21 +00:00
"""Deprecated - New code should avoid these"""
import warnings
from ..compat.compat_utils import passthrough_module
# XXX: Implement this the same way as other DeprecationWarnings without circular import
passthrough_module(__name__, '.._legacy', callback=lambda attr: warnings.warn(
DeprecationWarning(f'{__name__}.{attr} is deprecated'), stacklevel=6))
del passthrough_module
2025-05-02 21:11:08 +00:00
import re
import struct
2023-08-14 01:13:21 +00:00
2025-05-02 21:11:08 +00:00
def bytes_to_intlist(bs):
if not bs:
return []
if isinstance(bs[0], int): # Python 3
return list(bs)
else:
return [ord(c) for c in bs]
2023-08-14 01:13:21 +00:00
2025-05-02 21:11:08 +00:00
def intlist_to_bytes(xs):
if not xs:
return b''
return struct.pack('%dB' % len(xs), *xs)
2023-08-14 01:13:21 +00:00
2025-05-02 21:11:08 +00:00
compiled_regex_type = type(re.compile(''))