This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients dmalcolm, loewis, pitrou, vstinner
Date 2012-08-09.01:22:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1344475325.78.0.360448888195.issue9635@psf.upfronthosting.co.za>
In-reply-to
Content
> I thought about it making it METH_O instead (to make it easier to
> look at a single object), but then you'd be forced to pass an object
> in when using it, I think (though None should work).

I don't like this API. I really prefer METH_O because it is already very difficult to dump a Python object in a debugger (especially with gdb macros). Why not using two functions? One without argument, One with an argument.

The sys module is maybe not the right place for such low level function. You may create a new module with a name starting with _ (ex: _python_dbg). I'm quite sure that you will find other nice functions to add if you have a module dedicated to debugging :-)

If you don't want to create a new module, faulthandler might be used to add new debug functions.

It's maybe unrelated, but Brian Curtin also created a module to help debugging with Visual Studio:
https://bitbucket.org/briancurtin/minidumper/

We may use the same module for all debugging functions? (I suppose that Brian Curtin wants to integrate its minidumper into Python 3.4.)

Example:

 * faulthandler._breakpoint()
 * faulthandler._inspect(obj) # breakpoint with an object
 * faulthandler.enable_minidumper(...)
 * faulthandler.disable_minidumper(...)

--

For Power PC, the machine code to generate a breakpoint is 0x0cc00000. The instruction looks to be called twllei. Something like: "twllei reg_ZERO,trap_Cerror". Hum, it looks like there is family of instructions related to trap: all TW* instructions (twle, twlt, twge, ...).
History
Date User Action Args
2012-08-09 01:22:05vstinnersetrecipients: + vstinner, loewis, pitrou, dmalcolm
2012-08-09 01:22:05vstinnersetmessageid: <1344475325.78.0.360448888195.issue9635@psf.upfronthosting.co.za>
2012-08-09 01:22:05vstinnerlinkissue9635 messages
2012-08-09 01:22:04vstinnercreate