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/data-directory | |
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/data-directory')
-rw-r--r-- | gdb/data-directory/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/data-directory/Makefile.in b/gdb/data-directory/Makefile.in index 87c6dd4..41947c6 100644 --- a/gdb/data-directory/Makefile.in +++ b/gdb/data-directory/Makefile.in @@ -59,7 +59,9 @@ PYTHON_FILES = \ gdb/command/__init__.py \ gdb/command/pretty_printers.py \ gdb/command/prompt.py \ - gdb/command/explore.py + gdb/command/explore.py \ + gdb/function/__init__.py \ + gdb/function/strfns.py FLAGS_TO_PASS = \ "prefix=$(prefix)" \ |