diff options
author | Doug Evans <dje@google.com> | 2012-08-10 20:26:00 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2012-08-10 20:26:00 +0000 |
commit | a72c32530ec5ee0b1baf366ba99db5f2e83681cb (patch) | |
tree | e66eca144d70a1fbe48eac3bf97ea1cb74a97ba9 /gdb/NEWS | |
parent | 200bc880f4ba86e027c4f45cbc912f494da768f2 (diff) | |
download | gdb-a72c32530ec5ee0b1baf366ba99db5f2e83681cb.zip gdb-a72c32530ec5ee0b1baf366ba99db5f2e83681cb.tar.gz gdb-a72c32530ec5ee0b1baf366ba99db5f2e83681cb.tar.bz2 |
Add $_memeq, $_regex, $_streq, $_strlen convenience functions.
* NEWS: Document them.
* data-directory/Makefile.in (PYTHON_FILES): Add function/__init__.py,
function/strfns.py.
* python/py-type.c (typy_array_1): New function.
(typy_array): Call it.
(typy_vector): New function.
(type_object_methods): Add "vector".
* python/lib/gdb/function/__init__.py: New file.
* python/lib/gdb/function/strfns.py: New file.
doc/
* gdb.texinfo (Convenience Funs): New node.
(Types In Python): Document Type.vector.
testsuite/
* gdb.python/py-strfns.c: New file.
* gdb.python/py-strfns.exp: New file.
* gdb.python/py-type.exp (test_fields): Add vector tests.
Diffstat (limited to 'gdb/NEWS')
-rw-r--r-- | gdb/NEWS | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -3,6 +3,17 @@ *** Changes since GDB 7.5 +* Python scripting + + ** Vectors can be created with gdb.Type.vector. + +* New Python-based convenience functions: + + ** $_memeq(buf1, buf2, length) + ** $_streq(str1, str2) + ** $_strlen(str) + ** $_regex(str, regex) + * The 'cd' command now defaults to using '~' (the home directory) if not given an argument. |