mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 17:35:04 +00:00
e56303798c
Initial SickGear for Python 3.
22 lines
608 B
Python
22 lines
608 B
Python
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
|