GNOME Bugzilla – Bug 669535
Handle GParameter lists outside constructors.
Last modified: 2017-11-18 16:27:03 UTC
Created attachment 206953 [details] Simple test program with expected behaviour. Currently there is no means to handle passing GParameters to functions, either individually or as part of a list. In the construction of an object a Python Dictionary is turned into an array of GParamaters and passed, however a brief look at the code (and i don't know much about cpython or introspection) seems to indicate that this is a special case. This code should be made universal such that any function taking a variable array of GParameters accepts a dictionary, and possibly a tuple for a single GParameter input (not sure where this would be used). Attached my test program.
I have the same problem for Farstream, for now I added another API that's uses a GHashTable with str->GValue instead of GParameters, but it's not ideal. Maybe we should add constructors and destructors for GParameter in GLib?
With bug 709865 deprecating GParameter and with some activity in libpeas bug 660014 to create a new API for bindings I think this can be closed. If there is anything I've missed please say so.