Thanks, Michael that was it. Now however the python help will not work now that I added that to the path. I see you had a post on that earlier, did you ever come up with a solution on that?
-----Original Message----- From: Michael Foord [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 19, 2007 6:11 PM To: Discussion of IronPython Subject: Re: [IronPython] Threading and SQLAlchemy 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 _______________________________________________ users mailing list [email protected] http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
