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 belopolsky
Recipients belopolsky
Date 2012-08-29.23:33:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1346283185.13.0.0954859318202.issue15817@psf.upfronthosting.co.za>
In-reply-to
Content
Currently "help user-defined" lists commands defined in Misc/gdbinit without explanations


(gdb) help user-defined
User-defined commands.
The commands in this class are those defined by the user.
Use the "define" command to define a command.

List of commands:

lineno -- User-defined
printframe -- User-defined
pu -- User-defined
pyframe -- User-defined
pyframev -- User-defined
pyg -- User-defined

With attached patch, you get


List of commands:

lineno -- User-defined
printframe -- User-defined
pu -- Generally useful macro to print a Unicode string
pyframe -- User-defined
pyframev -- Print the current frame - verbose
pyg -- Prints a representation of the object to stderr
pylocals -- Print the local variables of the current frame
pyo -- Prints a representation of the object to stderr
pystack -- Print the entire Python call stack
pystackv -- Print the entire Python call stack - verbose mode

This should be further polished, but I wanted to hear from others before spending more effort.
History
Date User Action Args
2012-08-29 23:33:05belopolskysetrecipients: + belopolsky
2012-08-29 23:33:05belopolskysetmessageid: <1346283185.13.0.0954859318202.issue15817@psf.upfronthosting.co.za>
2012-08-29 23:33:04belopolskylinkissue15817 messages
2012-08-29 23:33:03belopolskycreate