This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

gdb and binutils branch master updated. 02be9a71009c94840f2367aa5554cbe5b71f56d1


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  02be9a71009c94840f2367aa5554cbe5b71f56d1 (commit)
      from  c21c8bde378b41f80ef61313ffbf653592e4ba28 (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=02be9a71009c94840f2367aa5554cbe5b71f56d1

commit 02be9a71009c94840f2367aa5554cbe5b71f56d1
Author: Doug Evans <dje@google.com>
Date:   Thu Oct 30 17:05:17 2014 -0700

    Add ability to add attributes to gdb.Objfile and gdb.Progspace objects.
    
    gdb/ChangeLog:
    
    	* NEWS: Mention ability add attributes to gdb.Objfile and
    	gdb.Progspace objects.
    	* python/py-objfile.c (objfile_object): New member dict.
    	(objfpy_dealloc): Py_XDECREF dict.
    	(objfpy_initialize): Initialize dict.
    	(objfile_getset): Add __dict__.
    	(objfile_object_type): Set tp_dictoffset member.
    	* python/py-progspace.c (progspace_object): New member dict.
    	(pspy_dealloc): Py_XDECREF dict.
    	(pspy_initialize): Initialize dict.
    	(pspace_getset): Add __dict__.
    	(pspace_object_type): Set tp_dictoffset member.
    
    gdb/doc/ChangeLog:
    
    	* python.texi (Progspaces In Python): Document ability to add
    	random attributes to gdb.Progspace objects.
    	(Objfiles In Python): Document ability to add random attributes to
    	gdb.objfile objects.
    
    gdb/testsuite/ChangeLog:
    
    	* gdb.python/py-objfile.exp: Add tests for setting random attributes
    	in objfiles.
    	* gdb.python/py-progspace.exp: Add tests for setting random attributes
    	in progspaces.

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

Summary of changes:
 gdb/ChangeLog                             |   15 +++++++
 gdb/NEWS                                  |    1 +
 gdb/doc/ChangeLog                         |    7 +++
 gdb/doc/python.texi                       |   66 +++++++++++++++++++++++++++++
 gdb/python/py-objfile.c                   |   10 ++++-
 gdb/python/py-progspace.c                 |   10 ++++-
 gdb/testsuite/ChangeLog                   |    7 +++
 gdb/testsuite/gdb.python/py-objfile.exp   |    5 ++
 gdb/testsuite/gdb.python/py-progspace.exp |   12 +++++-
 9 files changed, 130 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
gdb and binutils


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]