binary-newsreaderusenetkodistabletvshowsqnaptautullifanartsickbeardtvseriesplexswizzinembyseedboxtvdbnzbgetsubtitlewebuiquickboxtrakt
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
608 B
22 lines
608 B
import re
|
|
import sys
|
|
import threading
|
|
|
|
if 2 == sys.version_info[0]:
|
|
# noinspection PyProtectedMember
|
|
from .futures.thread import _WorkItem
|
|
else:
|
|
# noinspection PyCompatibility,PyProtectedMember
|
|
from concurrent.futures.thread import _WorkItem
|
|
|
|
|
|
class GenericWorkItem(_WorkItem):
|
|
|
|
number_regex = re.compile(r'(_\d+)$')
|
|
|
|
def _set_thread_name(self):
|
|
try:
|
|
ct = threading.current_thread()
|
|
ct.name = '%s^WEB%s' % (self.args[0].__class__.__name__.upper(), self.number_regex.search(ct.name).group(1))
|
|
except (BaseException, Exception):
|
|
pass
|
|
|