diff options
author | Andrew Burgess <aburgess@redhat.com> | 2025-04-23 10:07:09 +0100 |
---|---|---|
committer | Andrew Burgess <aburgess@redhat.com> | 2025-04-24 00:13:23 +0100 |
commit | 2eead96aeba1ec15d258b0952b37cb5d8bfc4c4a (patch) | |
tree | 15bba79331ea10abb662b539cf66b9853cfa3052 /gdb/python | |
parent | 94f3facb2185f780b9b971330277c6d89ad8c053 (diff) | |
download | binutils-2eead96aeba1ec15d258b0952b37cb5d8bfc4c4a.zip binutils-2eead96aeba1ec15d258b0952b37cb5d8bfc4c4a.tar.gz binutils-2eead96aeba1ec15d258b0952b37cb5d8bfc4c4a.tar.bz2 |
gdb/python: keyword args for Color.__init__
GDB's Python API documentation is clear:
Functions and methods which have two or more optional arguments allow
them to be specified using keyword syntax.
The gdb.Color.__init__ method matches this description, but doesn't
support keyword arguments.
This commit fixes this by adding keyword argument support.
There's a new test to cover this functionality.
Approved-By: Tom Tromey <tom@tromey.com>
Diffstat (limited to 'gdb/python')
-rw-r--r-- | gdb/python/py-color.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gdb/python/py-color.c b/gdb/python/py-color.c index c48d14e..97801f8 100644 --- a/gdb/python/py-color.c +++ b/gdb/python/py-color.c @@ -176,7 +176,10 @@ colorpy_init (PyObject *self, PyObject *args, PyObject *kwds) PyObject *colorspace_obj = nullptr; color_space colorspace = color_space::MONOCHROME; - if (!PyArg_ParseTuple (args, "|OO", &value_obj, &colorspace_obj)) + static const char *keywords[] = { "value", "color_space", nullptr }; + + if (!gdb_PyArg_ParseTupleAndKeywords (args, kwds, "|OO", keywords, + &value_obj, &colorspace_obj)) return -1; try |