What does the import ide do in python 2.3? -
i have library in python 2.3.x want port 2.7.x, have library called ide cannot find. python 2.3 standard library , if how can use/override in python 2.7.x?
code snippet:
import ide; import ghs_misc; ghs_util import *; import sys; import re; def ghs_getdebuggerservice(servicename, workingdir, pluginid): """ multi debugger service. """ ret = ide.open(servicename, workingdir, pluginid); if (ret == none): print("cannot launch debugger service." ); else: ret.setoutputmask(0xff); return ret;
i following error running in python 2.7.x:
import ide importerror: no module named ide
Comments
Post a Comment