mirror of
https://github.com/morpheus65535/bazarr.git
synced 2026-01-20 16:05:20 +08:00
7 lines
191 B
Python
7 lines
191 B
Python
from __future__ import absolute_import
|
|
from future.utils import PY3
|
|
|
|
from multiprocessing import *
|
|
if not PY3:
|
|
__future_module__ = True
|
|
from multiprocessing.queues import SimpleQueue
|