Curtis Scheer wrote: > I am trying to import the SQLAlchemy module into IronPython to see if I can > do some testing of existing Python code we have. Has anyone had success > using this module in IronPython? > > > It appears to be failing when trying to import the python threading module > like so: > > try: > import thread, threading > except ImportError: > import dummy_thread as thread > import dummy_threading as threading > > >
Those imports work fine for me. Are you sure you have the Python standard library on your path? (thread is built in, but threading is a standard library module.) Michael Foord http://www.voidspace.org.uk/ironpython/index.shtml > more specifically: > > import threading > > Is this a bug or what is the appropriate work around for this? > > Thanks, > Curtis > > _______________________________________________ > users mailing list > [email protected] > http://lists.ironpython.com/listinfo.cgi/users-ironpython.com > > _______________________________________________ users mailing list [email protected] http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
