private System.Collections.IList GetSysPath()
        {
            var sys_path = (System.Collections.IList)m_py.EvaluateExpression("import sys", "sys.path");

            m_py.RemoveVariable("sys");
            return(sys_path);
        }