runtime/PLCObject.py
changeset 1749 d73b64672238
parent 1745 f9d32913bad4
child 1750 acf02488f37f
equal deleted inserted replaced
1748:ba5f64fe0e00 1749:d73b64672238
    43 
    43 
    44 def get_last_traceback(tb):
    44 def get_last_traceback(tb):
    45     while tb.tb_next:
    45     while tb.tb_next:
    46         tb = tb.tb_next
    46         tb = tb.tb_next
    47     return tb
    47     return tb
       
    48 
    48 
    49 
    49 lib_ext = {
    50 lib_ext = {
    50      "linux2": ".so",
    51      "linux2": ".so",
    51      "win32":  ".dll",
    52      "win32":  ".dll",
    52      }.get(sys.platform, "")
    53      }.get(sys.platform, "")