public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug python/15276] New: upstream $_caller_is and $_caller_matches
@ 2013-03-14 14:40 tromey at redhat dot com
  2013-03-14 14:41 ` [Bug python/15276] " tromey at redhat dot com
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: tromey at redhat dot com @ 2013-03-14 14:40 UTC (permalink / raw)
  To: gdb-prs

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

             Bug #: 15276
           Summary: upstream $_caller_is and $_caller_matches
           Product: gdb
           Version: unknown
            Status: NEW
          Severity: normal
          Priority: P2
         Component: python
        AssignedTo: unassigned@sourceware.org
        ReportedBy: tromey@redhat.com
    Classification: Unclassified


We've add the convenience functions $_caller_is
and $_caller_matches in Fedora for quite a while.
We should upstream these.
This came up since they would be useful to LibreOffice developers.

-- 
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] 6+ messages in thread

* [Bug python/15276] upstream $_caller_is and $_caller_matches
  2013-03-14 14:40 [Bug python/15276] New: upstream $_caller_is and $_caller_matches tromey at redhat dot com
@ 2013-03-14 14:41 ` tromey at redhat dot com
  2014-09-01 23:09 ` xdje42 at gmail dot com
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: tromey at redhat dot com @ 2013-03-14 14:41 UTC (permalink / raw)
  To: gdb-prs

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

Tom Tromey <tromey at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |archer

-- 
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] 6+ messages in thread

* [Bug python/15276] upstream $_caller_is and $_caller_matches
  2013-03-14 14:40 [Bug python/15276] New: upstream $_caller_is and $_caller_matches tromey at redhat dot com
  2013-03-14 14:41 ` [Bug python/15276] " tromey at redhat dot com
@ 2014-09-01 23:09 ` xdje42 at gmail dot com
  2014-09-06 16:20 ` cvs-commit at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: xdje42 at gmail dot com @ 2014-09-01 23:09 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=15276

Doug Evans <xdje42 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |xdje42 at gmail dot com

--- Comment #1 from Doug Evans <xdje42 at gmail dot com> ---
See https://sourceware.org/ml/gdb-patches/2014-09/msg00036.html

-- 
You are receiving this mail because:
You are on the CC list for the bug.


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

* [Bug python/15276] upstream $_caller_is and $_caller_matches
  2013-03-14 14:40 [Bug python/15276] New: upstream $_caller_is and $_caller_matches tromey at redhat dot com
  2013-03-14 14:41 ` [Bug python/15276] " tromey at redhat dot com
  2014-09-01 23:09 ` xdje42 at gmail dot com
@ 2014-09-06 16:20 ` cvs-commit at gcc dot gnu.org
  2014-09-06 16:24 ` cvs-commit at gcc dot gnu.org
  2014-09-06 16:29 ` xdje42 at gmail dot com
  4 siblings, 0 replies; 6+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2014-09-06 16:20 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=15276

--- Comment #2 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gdb and binutils".

The branch, master has been updated
       via  faa42425cb1f5cd279fc8c91d0b75d37853a128a (commit)
      from  0d41ba00c60b5e0b66895cfa56c1db137a9345d8 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=faa42425cb1f5cd279fc8c91d0b75d37853a128a

commit faa42425cb1f5cd279fc8c91d0b75d37853a128a
Author: Doug Evans <xdje42@gmail.com>
Date:   Sat Sep 6 09:15:44 2014 -0700

    PR 15276: Add $_caller_is, $_caller_matches, $_any_caller_is,
$_any_caller_matches

    gdb/ChangeLog:

        PR 15276
        * NEWS: Mention $_caller_is, $_caller_matches, $_any_caller_is,
        $_any_caller_matches.
        * data-directory/Makefile.in (PYTHON_FILE_LIST): Add caller_is.py.
        * python/lib/gdb/function/caller_is.py: New file.

    gdb/testsuite/ChangeLog:

        PR 15276
        * gdb.python/py-caller-is.c: New file.
        * gdb.python/py-caller-is.exp: New file.

    gdb/doc/ChangeLog:

        PR 15276
        * gdb.texinfo (Convenience Funs): Document $_caller_is,
        $_caller_matches, $_any_caller_is, $_any_caller_matches.

-----------------------------------------------------------------------

Summary of changes:
 gdb/ChangeLog                             |    8 ++
 gdb/NEWS                                  |    7 ++
 gdb/data-directory/Makefile.in            |    1 +
 gdb/doc/ChangeLog                         |    6 +
 gdb/doc/gdb.texinfo                       |   64 ++++++++++++
 gdb/python/lib/gdb/function/caller_is.py  |  160 +++++++++++++++++++++++++++++
 gdb/testsuite/ChangeLog                   |    6 +
 gdb/testsuite/gdb.python/py-caller-is.c   |   41 ++++++++
 gdb/testsuite/gdb.python/py-caller-is.exp |   73 +++++++++++++
 9 files changed, 366 insertions(+), 0 deletions(-)
 create mode 100644 gdb/python/lib/gdb/function/caller_is.py
 create mode 100644 gdb/testsuite/gdb.python/py-caller-is.c
 create mode 100644 gdb/testsuite/gdb.python/py-caller-is.exp

-- 
You are receiving this mail because:
You are on the CC list for the bug.


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

* [Bug python/15276] upstream $_caller_is and $_caller_matches
  2013-03-14 14:40 [Bug python/15276] New: upstream $_caller_is and $_caller_matches tromey at redhat dot com
                   ` (2 preceding siblings ...)
  2014-09-06 16:20 ` cvs-commit at gcc dot gnu.org
@ 2014-09-06 16:24 ` cvs-commit at gcc dot gnu.org
  2014-09-06 16:29 ` xdje42 at gmail dot com
  4 siblings, 0 replies; 6+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2014-09-06 16:24 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=15276

--- Comment #3 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gdb and binutils".

The branch, master has been updated
       via  1a52a81ccd124db93f1124c0ac3325888ead4e9c (commit)
      from  faa42425cb1f5cd279fc8c91d0b75d37853a128a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=1a52a81ccd124db93f1124c0ac3325888ead4e9c

commit 1a52a81ccd124db93f1124c0ac3325888ead4e9c
Author: Doug Evans <xdje42@gmail.com>
Date:   Sat Sep 6 09:22:57 2014 -0700

    Add missing author to previous entry (PR 15276).

-----------------------------------------------------------------------

Summary of changes:
 gdb/ChangeLog |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

-- 
You are receiving this mail because:
You are on the CC list for the bug.


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

* [Bug python/15276] upstream $_caller_is and $_caller_matches
  2013-03-14 14:40 [Bug python/15276] New: upstream $_caller_is and $_caller_matches tromey at redhat dot com
                   ` (3 preceding siblings ...)
  2014-09-06 16:24 ` cvs-commit at gcc dot gnu.org
@ 2014-09-06 16:29 ` xdje42 at gmail dot com
  4 siblings, 0 replies; 6+ messages in thread
From: xdje42 at gmail dot com @ 2014-09-06 16:29 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=15276

Doug Evans <xdje42 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #4 from Doug Evans <xdje42 at gmail dot com> ---
Patch committed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.


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

end of thread, other threads:[~2014-09-06 16:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-14 14:40 [Bug python/15276] New: upstream $_caller_is and $_caller_matches tromey at redhat dot com
2013-03-14 14:41 ` [Bug python/15276] " tromey at redhat dot com
2014-09-01 23:09 ` xdje42 at gmail dot com
2014-09-06 16:20 ` cvs-commit at gcc dot gnu.org
2014-09-06 16:24 ` cvs-commit at gcc dot gnu.org
2014-09-06 16:29 ` xdje42 at gmail 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).