We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please see https://lazka.github.io/pgi-docs/#GLib-2.0/functions.html#GLib.timeout_add where the signature is
GLib.timeout_add(priority, interval, function, *data)
But this is wrong. help() tells me
help()
timeout_add(interval, function, *user_data, **kwargs)
How is the API Ref generated? Isn't it generated from the sources? So why is there a difference between the API Ref and help()?
The text was updated successfully, but these errors were encountered:
This is because it is overriden, but gets the description from the regular docs.
Sorry, something went wrong.
This also happens to GLib.idle_add(). The correct signature is GLib.idle_add(function, *user_data, **kwargs)
No branches or pull requests
Please see https://lazka.github.io/pgi-docs/#GLib-2.0/functions.html#GLib.timeout_add where the signature is
GLib.timeout_add(priority, interval, function, *data)
But this is wrong.
help()
tells metimeout_add(interval, function, *user_data, **kwargs)
How is the API Ref generated? Isn't it generated from the sources? So why is there a difference between the API Ref and
help()
?The text was updated successfully, but these errors were encountered: