public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug python/12550] New: Strange behavior of doc for gdb.Parameter
@ 2011-03-07 13:06 joachim.protze at zih dot tu-dresden.de
  2011-03-16 10:30 ` [Bug python/12550] " pmuldoon at redhat dot com
  0 siblings, 1 reply; 2+ messages in thread
From: joachim.protze at zih dot tu-dresden.de @ 2011-03-07 13:06 UTC (permalink / raw)
  To: gdb-prs

http://sourceware.org/bugzilla/show_bug.cgi?id=12550

           Summary: Strange behavior of doc for gdb.Parameter
           Product: gdb
           Version: HEAD
            Status: NEW
          Severity: normal
          Priority: P2
         Component: python
        AssignedTo: unassigned@sourceware.org
        ReportedBy: joachim.protze@zih.tu-dresden.de


(gdb) python
>class mynewparameter(gdb.Parameter):
>#  "01234567890123456789"
>  def __init__(self):
>#    self.set_doc="01234567890123456789"
>    self.show_doc="01234567890123456789"
>    super(mynewparameter, self).__init__('mynewparameter',
>         gdb.COMMAND_DATA, gdb.PARAM_UINTEGER)
>    self.value = 20
>mynewparameter()
>end
(gdb) show mynewparameter
567890123456789 is 20.
(gdb) help set mynewparameter
This command is not documented.
This command is not documented.

- for show_doc the first 5 character are skipped
- "help set parameter-name" evaluates both: the set_doc and the __doc__ string.
If it is not set, "This command is not documented." appears - otherwise the
corresponding string is printed. 


For c&p:

python
class mynewparameter(gdb.Parameter):
  "01234567890123456789"
  def __init__(self):
    self.set_doc="01234567890123456789"
    self.show_doc="01234567890123456789"
    super(mynewparameter, self).__init__('mynewparameter',
         gdb.COMMAND_DATA, gdb.PARAM_UINTEGER)
    self.value = 20
mynewparameter()
end
show mynewparameter
help set mynewparameter

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 2+ messages in thread

* [Bug python/12550] Strange behavior of doc for gdb.Parameter
  2011-03-07 13:06 [Bug python/12550] New: Strange behavior of doc for gdb.Parameter joachim.protze at zih dot tu-dresden.de
@ 2011-03-16 10:30 ` pmuldoon at redhat dot com
  0 siblings, 0 replies; 2+ messages in thread
From: pmuldoon at redhat dot com @ 2011-03-16 10:30 UTC (permalink / raw)
  To: gdb-prs

http://sourceware.org/bugzilla/show_bug.cgi?id=12550

Phil Muldoon <pmuldoon at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |pmuldoon at redhat dot com
         Resolution|                            |DUPLICATE

--- Comment #1 from Phil Muldoon <pmuldoon at redhat dot com> 2011-03-16 10:29:45 UTC ---
I believe this to be a duplicate of 12175.  A patch recently went in that
allows the user to write parameters using callbacks in a sub-classed parameter.
 This gets around the legacy method of using strings.

*** This bug has been marked as a duplicate of bug 12175 ***

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-03-16 10:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-03-07 13:06 [Bug python/12550] New: Strange behavior of doc for gdb.Parameter joachim.protze at zih dot tu-dresden.de
2011-03-16 10:30 ` [Bug python/12550] " pmuldoon at redhat dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).