<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: Embedded Debugging</title>
	<atom:link href="http://winpdb.org/docs/embedded-debugging/feed/" rel="self" type="application/rss+xml" />
	<link>http://winpdb.org</link>
	<description></description>
	<pubDate>Sat, 31 Jul 2010 04:32:17 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Henrik Vendelbo</title>
		<link>http://winpdb.org/docs/embedded-debugging/comment-page-1/#comment-112504</link>
		<dc:creator>Henrik Vendelbo</dc:creator>
		<pubDate>Sat, 01 May 2010 18:33:07 +0000</pubDate>
		<guid isPermaLink="false">http://winpdb.org/?page_id=9#comment-112504</guid>
		<description>This doesn't seem to work on PyPy

Are you forgetting to close files ?

I get OSError, [Errno 24] Too many open files trying to use it with PyPy 1.1 on OS X</description>
		<content:encoded><![CDATA[<p>This doesn&#8217;t seem to work on PyPy</p>
<p>Are you forgetting to close files ?</p>
<p>I get OSError, [Errno 24] Too many open files trying to use it with PyPy 1.1 on OS X</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vit</title>
		<link>http://winpdb.org/docs/embedded-debugging/comment-page-1/#comment-104035</link>
		<dc:creator>vit</dc:creator>
		<pubDate>Tue, 05 Jan 2010 23:24:30 +0000</pubDate>
		<guid isPermaLink="false">http://winpdb.org/?page_id=9#comment-104035</guid>
		<description>Update: after some poking around I managed to make it work by creating a source provider that would read chrome:// URLs. I'm happy now! Thanks for great work! :)

By the way, it looks like the documentation on this page is not up do date.</description>
		<content:encoded><![CDATA[<p>Update: after some poking around I managed to make it work by creating a source provider that would read chrome:// URLs. I&#8217;m happy now! Thanks for great work! <img src='http://winpdb.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
By the way, it looks like the documentation on this page is not up do date.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vit</title>
		<link>http://winpdb.org/docs/embedded-debugging/comment-page-1/#comment-104020</link>
		<dc:creator>vit</dc:creator>
		<pubDate>Tue, 05 Jan 2010 22:23:04 +0000</pubDate>
		<guid isPermaLink="false">http://winpdb.org/?page_id=9#comment-104020</guid>
		<description>Hi,

I was trying to use winpdb to debug XULRunner/pyXPCOMExt application, but whenever I'm connecting to the script, I'm getting the following message:

"Failed to load source file 'chrome://appname/content/main.py' from debuggee.
You may continue to debug, but you will not see source lines from this file."

The Namespace/Threads/Stack panels are populated with correct inspectable data though. I was trying to load the source file and set a breakpoint, but winpdb would not stop on the breakpoint in this case.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I was trying to use winpdb to debug XULRunner/pyXPCOMExt application, but whenever I&#8217;m connecting to the script, I&#8217;m getting the following message:</p>
<p>&#8220;Failed to load source file &#8216;chrome://appname/content/main.py&#8217; from debuggee.<br />
You may continue to debug, but you will not see source lines from this file.&#8221;</p>
<p>The Namespace/Threads/Stack panels are populated with correct inspectable data though. I was trying to load the source file and set a breakpoint, but winpdb would not stop on the breakpoint in this case.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomeu Vizoso: A week at LATU (part II): Developing with Sugar &#124; Full-Linux.com</title>
		<link>http://winpdb.org/docs/embedded-debugging/comment-page-1/#comment-103483</link>
		<dc:creator>Tomeu Vizoso: A week at LATU (part II): Developing with Sugar &#124; Full-Linux.com</dc:creator>
		<pubDate>Thu, 31 Dec 2009 07:15:22 +0000</pubDate>
		<guid isPermaLink="false">http://winpdb.org/?page_id=9#comment-103483</guid>
		<description>[...] when a debugger is needed pdb is a good equivalent to gdb. If you prefer a graphical debugger, winpdb works well and also allows you to attach to a running [...]</description>
		<content:encoded><![CDATA[<p>[...] when a debugger is needed pdb is a good equivalent to gdb. If you prefer a graphical debugger, winpdb works well and also allows you to attach to a running [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: araud</title>
		<link>http://winpdb.org/docs/embedded-debugging/comment-page-1/#comment-102036</link>
		<dc:creator>araud</dc:creator>
		<pubDate>Tue, 15 Dec 2009 14:14:28 +0000</pubDate>
		<guid isPermaLink="false">http://winpdb.org/?page_id=9#comment-102036</guid>
		<description>Did anyone managed to attach to local process from console?

I am under windows trying this scenario:
c:/temp/test.py contains:
import rpdb2; rpdb2.start_embedded_debugger(”123″)
I run it by double-clicking.
A can attach manually thru gui. But can’t get command line working:
winpdb –attach=test.py –pwd=123 –host=127.0.0.1

All I receive in return is help message…

Thank you!</description>
		<content:encoded><![CDATA[<p>Did anyone managed to attach to local process from console?</p>
<p>I am under windows trying this scenario:<br />
c:/temp/test.py contains:<br />
import rpdb2; rpdb2.start_embedded_debugger(”123″)<br />
I run it by double-clicking.<br />
A can attach manually thru gui. But can’t get command line working:<br />
winpdb –attach=test.py –pwd=123 –host=127.0.0.1</p>
<p>All I receive in return is help message…</p>
<p>Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laurent</title>
		<link>http://winpdb.org/docs/embedded-debugging/comment-page-1/#comment-99183</link>
		<dc:creator>Laurent</dc:creator>
		<pubDate>Sat, 21 Nov 2009 00:25:58 +0000</pubDate>
		<guid isPermaLink="false">http://winpdb.org/?page_id=9#comment-99183</guid>
		<description>Ha just found howto make my thread appears.
I've added as suggested in your doc:
rpdb2.settrace()

in the thread's run loop.

And now I see them!

The only question that remains is that they where invoked via threading module
 so i suspect they were not detected due to post debugger invocation.</description>
		<content:encoded><![CDATA[<p>Ha just found howto make my thread appears.<br />
I&#8217;ve added as suggested in your doc:<br />
rpdb2.settrace()</p>
<p>in the thread&#8217;s run loop.</p>
<p>And now I see them!</p>
<p>The only question that remains is that they where invoked via threading module<br />
 so i suspect they were not detected due to post debugger invocation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laurent</title>
		<link>http://winpdb.org/docs/embedded-debugging/comment-page-1/#comment-99182</link>
		<dc:creator>Laurent</dc:creator>
		<pubDate>Sat, 21 Nov 2009 00:10:23 +0000</pubDate>
		<guid isPermaLink="false">http://winpdb.org/?page_id=9#comment-99182</guid>
		<description>Hi nir,
I've just trtied embedded debugger and it works quite well.
I've got only one issue:
My app invoke some thread at startup.
If I debug my app like "winpdb myapp". I can debug them.
On the other side I embed the debugger it could not see the previously invoked thread.
Is there a way to declare the threads to the embedded debugguer, so it could track them?</description>
		<content:encoded><![CDATA[<p>Hi nir,<br />
I&#8217;ve just trtied embedded debugger and it works quite well.<br />
I&#8217;ve got only one issue:<br />
My app invoke some thread at startup.<br />
If I debug my app like &#8220;winpdb myapp&#8221;. I can debug them.<br />
On the other side I embed the debugger it could not see the previously invoked thread.<br />
Is there a way to declare the threads to the embedded debugguer, so it could track them?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Python Dev Environment - Syntext Forums - Serna Enterprise XML Editor, Serna Free XML Editor</title>
		<link>http://winpdb.org/docs/embedded-debugging/comment-page-1/#comment-81688</link>
		<dc:creator>Python Dev Environment - Syntext Forums - Serna Enterprise XML Editor, Serna Free XML Editor</dc:creator>
		<pubDate>Mon, 29 Jun 2009 22:24:51 +0000</pubDate>
		<guid isPermaLink="false">http://winpdb.org/?page_id=9#comment-81688</guid>
		<description>[...] Python interpreters. I'll give it a try with Serna, but wondered if anyone has tried this already.  Winpdb - A Platform Independent Python Debugger Embedded Debugging  Regards,  [...]</description>
		<content:encoded><![CDATA[<p>[...] Python interpreters. I&#8217;ll give it a try with Serna, but wondered if anyone has tried this already.  Winpdb - A Platform Independent Python Debugger Embedded Debugging  Regards,  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fonsch</title>
		<link>http://winpdb.org/docs/embedded-debugging/comment-page-1/#comment-72899</link>
		<dc:creator>fonsch</dc:creator>
		<pubDate>Sat, 25 Apr 2009 06:52:18 +0000</pubDate>
		<guid isPermaLink="false">http://winpdb.org/?page_id=9#comment-72899</guid>
		<description>Thanks for the quick reply nir. Upgrading winpdb didn't help, I still get the same error. I'll post my question at the Google group (feel free to remove my posts here if they're out of place :) )</description>
		<content:encoded><![CDATA[<p>Thanks for the quick reply nir. Upgrading winpdb didn&#8217;t help, I still get the same error. I&#8217;ll post my question at the Google group (feel free to remove my posts here if they&#8217;re out of place <img src='http://winpdb.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nir</title>
		<link>http://winpdb.org/docs/embedded-debugging/comment-page-1/#comment-72871</link>
		<dc:creator>nir</dc:creator>
		<pubDate>Sat, 25 Apr 2009 02:47:21 +0000</pubDate>
		<guid isPermaLink="false">http://winpdb.org/?page_id=9#comment-72871</guid>
		<description>fonsch,

Ubuntu 9.04 has an old outdated package of Winpdb. Try the latest version from this website and let me know if the problem still exists:
http://winpdb.org/download/

Also please use the Winpdb Google group to communicate on this issue:
http://groups.google.com/group/winpdb

Thanks,
Nir</description>
		<content:encoded><![CDATA[<p>fonsch,</p>
<p>Ubuntu 9.04 has an old outdated package of Winpdb. Try the latest version from this website and let me know if the problem still exists:<br />
<a href="http://winpdb.org/download/" rel="nofollow">http://winpdb.org/download/</a></p>
<p>Also please use the Winpdb Google group to communicate on this issue:<br />
<a href="http://groups.google.com/group/winpdb" rel="nofollow">http://groups.google.com/group/winpdb</a></p>
<p>Thanks,<br />
Nir</p>
]]></content:encoded>
	</item>
</channel>
</rss>
