On 09/29/2010 04:16 PM, Ed Leafe wrote: > On Sep 29, 2010, at 6:13 PM, Jeff Johnson wrote: > > >> C:\PythonProjects\dabo\ide>python classdesigner.py >> Traceback (most recent call last): >> File "classdesigner.py", line 8, in<module> >> import dabo >> File "C:\pythonprojects\dabo\dabo\__init__.py", line 104, in<module> >> import logging.handlers >> File "c:\python25\lib\logging\handlers.py", line 30, in<module> >> import sys, logging, socket, types, os, string, cPickle, struct, >> time, glob >> File "c:\python25\lib\socket.py", line 70, in<module> >> _realssl = ssl >> NameError: name 'ssl' is not defined >> Exception AttributeError: '_shutdown' in<module 'threading' from >> 'c:\python25\l >> ib\threading.pyc'> ignored >> >> My class designer stopped working all of a sudden. Winders xp python >> 2.6 dabo svn version >> > > The error says that you're running Python 2.5, not 2.6. > > It also suggests that your standard library is not correctly/completely > installed. The error is in the socket.py script, which is part of the > standard library. > > > > -- Ed Leafe > > >
Ed: Yep, I noticed that. I tried moving to 2.6 from 2.5 and did a half-assed job of it. Once I installed wxpython and reportlab for 2.6 and completely changed my pythonpath, everything worked great. It was probably a good thing because I gain more understanding every time I do stuff like this. Thanks, Jeff ------------------- Jeff Johnson [email protected] _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[email protected]
