Re: [Pydev-users] Eclipse's PyDev plugin; Unresolve import module:atexit

2011-10-06 Thread Fabio Zadrozny
On Thu, Oct 6, 2011 at 5:05 PM, Mehrdad Pazooki wrote: > Thanks for the reply; > > this is what I got from python3; import sys print(sys.path) > '/usr/lib/python32.zip', > '/usr/lib/python3.2', > '/usr/lib/python3.2/plat-linux2', > '/usr/lib/python3.2/lib-dynload', > '/usr/lib/python3.2/

Re: [Pydev-users] Eclipse's PyDev plugin; Unresolve import module:atexit

2011-10-06 Thread Mehrdad Pazooki
Thanks for the reply; this is what I got from python3; >>> import sys >>> print(sys.path) '/usr/lib/python32.zip', '/usr/lib/python3.2', '/usr/lib/python3.2/plat-linux2', '/usr/lib/python3.2/lib-dynload', '/usr/lib/python3.2/site-packages' and this is what I got from PYTHONPATH in Eclipse: /u

Re: [Pydev-users] Eclipse's PyDev plugin; Unresolve import module:atexit

2011-10-06 Thread Fabio Zadrozny
Probably you have the PYTHONPATH mixed... You can check that by making a script and running it (if you can't fix it, please post the details of your PYTHONPATH): i.e.: import sys;print(sorted('\n'.join(sys.path))) Cheers, Fabio On Thu, Oct 6, 2011 at 4:25 PM, Mehrdad Pazooki wrote: > I used th

[Pydev-users] Eclipse's PyDev plugin; Unresolve import module:atexit

2011-10-06 Thread Mehrdad Pazooki
I used the following source code; https://www.assembla.com/code/EstMon/subversion/nodes/trunk/src/daemon.py when I pasted it to eclipse in a new file I got a message: "Unresolved Import Module; atexit" with a red cross beside my import section which is;"import sys, os, time, atexit, signal, sock