Hi, I am a newbie to python and pypy. I choose to read pypy source code to learn about python and python library. But when I try to run pypy in debug mode in pydev, I got the following problem: /// error message begin pydev debugger Traceback (most recent call last): File "F:\TOOLS\eclipse\plugins\org.python.pydev.debug_1.3.4\pysrc \pydevd.py", line 754, in <module> debugger.run(setup['file'], None, None) File "F:\TOOLS\eclipse\plugins\org.python.pydev.debug_1.3.4\pysrc \pydevd.py", line 597, in run execfile(file, globals, locals) #execute the script File "E:\Java\pySamples\pypy\bin\py.py", line 14, in <module> from pypy.tool import option File "E:\Java\pySamples\pypy\tool\option.py", line 4, in <module> from pypy.config.pypyoption import get_pypy_config File "E:\Java\pySamples\pypy\config\pypyoption.py", line 2, in <module> import py, os File "E:\Java\pySamples\pypy\bin\py.py", line 14, in <module> from pypy.tool import option ImportError: cannot import name option Exception in thread pydevd.Writer (most likely raised during interpreter shutdown): Traceback (most recent call last): File "C:\Python25\lib\threading.py", line 460, in __bootstrap File "F:\TOOLS\eclipse\plugins\org.python.pydev.debug_1.3.4\pysrc \pydevd_comm.py", line 258, in run /// error message end I try to figure out why this exception or error come out. I found that py.py import option.py, and option.py import pypyoption.py, and pypyoption.py import py.py again. Is this the problem of pypy(I don't think so), or the problem of pydev debugger, or something else? why? Any comments or assistance that can light up the way are much appreciated.Thanks.
Wang Chunming
-- http://mail.python.org/mailman/listinfo/python-list