DonPAPI/lazagne/config/lib/memorpy/Process.py
Pierre-Alexandre Vandewoestyne f27f527410 beta release commit
2021-09-27 11:20:43 +02:00

14 lines
375 B
Python

#!/usr/bin/env python
# -*- coding: UTF8 -*-
import sys
from .BaseProcess import *
if sys.platform=='win32':
from .WinProcess import WinProcess as Process
elif sys.platform=='darwin':
from .OSXProcess import OSXProcess as Process
elif 'sunos' in sys.platform:
from .SunProcess import SunProcess as Process
else:
from .LinProcess import LinProcess as Process