[Pydev-code] Re: Debugging problem
Brought to you by:
fabioz
From: Aleks T. <a...@to...> - 2004-05-17 21:10:45
|
Hi, I've fixed the bug and rolled it into a new release. I have not put it on the sf release page yet, but you can get it from the update site: http://pydev.sf.net/updates/ The problem was that "<string>" was a name of the file in the stack, which caused XML parser to croak. I've fixed it so that file names are now also encoded. To be expected, I've tested the debugger only on a couple of test cases. Aleks Ron Smith wrote: > > When I took a look at pydevd.py file, I thought it odd that > it didn't have a .pyc file, but pydevd_vars.py did. > I tried to run it standalone to see if the interpreter would > generate the .pyc, and got an error with the socket > bind() call in startServer(...). The bind call was expecting > a tuple rather than an int. It's probably unrelated, but > I replaced it with: > s.bind(('', port)) > and didn't get the error anymore. |