runtime/PLCObject.py
changeset 1850 614396cbffbf
parent 1847 6198190bc121
child 1868 616c3f4bcbcb
equal deleted inserted replaced
1849:6811021e3d94 1850:614396cbffbf
    23 
    23 
    24 
    24 
    25 from threading import Timer, Thread, Lock, Semaphore, Event
    25 from threading import Timer, Thread, Lock, Semaphore, Event
    26 import ctypes
    26 import ctypes
    27 import os
    27 import os
    28 import commands
       
    29 import types
       
    30 import sys
    28 import sys
    31 import traceback
    29 import traceback
    32 from time import time
    30 from time import time
    33 
    31 
    34 import Pyro.core as pyro
    32 import Pyro.core as pyro
    35 
    33 
    36 from targets.typemapping import LogLevelsDefault, LogLevelsCount, TypeTranslator, UnpackDebugBuffer
    34 from targets.typemapping import LogLevelsDefault, LogLevelsCount, TypeTranslator
    37 
    35 
    38 
    36 
    39 if os.name in ("nt", "ce"):
    37 if os.name in ("nt", "ce"):
    40     from _ctypes import LoadLibrary as dlopen
    38     from _ctypes import LoadLibrary as dlopen
    41     from _ctypes import FreeLibrary as dlclose
    39     from _ctypes import FreeLibrary as dlclose