diff options
author | Christoph Reiter <reiter.christoph@gmail.com> | 2018-03-21 10:37:49 +0100 |
---|---|---|
committer | Christoph Reiter <reiter.christoph@gmail.com> | 2018-03-21 10:37:49 +0100 |
commit | f4f27e01cf199baf2f2a810a1b86a69388e43e2a (patch) | |
tree | 150d3f56178892da8e8bf8dde9d09b4ab67f0636 /gi/gimodule.c | |
parent | 610dd76e8c6f5dcec0726544fccb81219d03f4b7 (diff) | |
download | pygobject-f4f27e01cf199baf2f2a810a1b86a69388e43e2a.tar.gz |
Remove pyg_type_is_a() and use GType.is_a() instead
Diffstat (limited to 'gi/gimodule.c')
-rw-r--r-- | gi/gimodule.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gi/gimodule.c b/gi/gimodule.c index c551fffa..7a456b82 100644 --- a/gi/gimodule.c +++ b/gi/gimodule.c @@ -643,7 +643,6 @@ static PyMethodDef _gi_functions[] = { "See the reference manual for a complete reference.\n" }, { "type_name", pyg_type_name, METH_VARARGS }, { "type_from_name", pyg_type_from_name, METH_VARARGS }, - { "type_is_a", pyg_type_is_a, METH_VARARGS }, { "type_register", _wrap_pyg_type_register, METH_VARARGS }, { "signal_new", pyg_signal_new, METH_VARARGS }, { "list_properties", |