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

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -