summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Henstridge <james@daa.com.au>2001-09-18 15:08:14 +0000
committerJames Henstridge <jamesh@src.gnome.org>2001-09-18 15:08:14 +0000
commit3a0059be1dedbc1fa4267ba0e71a194a6f818d52 (patch)
tree253ca3ee37f9456bd399efd2620df27020ec649b
parentbcaf62aab7e7dca0e9c8bbc5e45c848b96830d3e (diff)
downloadpygobject-3a0059be1dedbc1fa4267ba0e71a194a6f818d52.tar.gz
pygobject-3a0059be1dedbc1fa4267ba0e71a194a6f818d52.tar.xz
pygobject-3a0059be1dedbc1fa4267ba0e71a194a6f818d52.zip
rename to gobject.list_properties.
2001-09-18 James Henstridge <james@daa.com.au> * gobjectmodule.c (pyg_object_class_list_properties): rename to gobject.list_properties.
-rw-r--r--gobject/gobjectmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gobject/gobjectmodule.c b/gobject/gobjectmodule.c
index 01c312e..8bf83d0 100644
--- a/gobject/gobjectmodule.c
+++ b/gobject/gobjectmodule.c
@@ -1990,7 +1990,7 @@ pyg_object_class_list_properties (PyObject *self, PyObject *args)
guint nprops;
guint i;
- if (!PyArg_ParseTuple(args, "O:gobject.object_class_list_properties",
+ if (!PyArg_ParseTuple(args, "O:gobject.list_properties",
&py_itype))
return NULL;
if ((itype = pyg_type_from_object(py_itype)) == 0)
@@ -2034,7 +2034,7 @@ static PyMethodDef pygobject_functions[] = {
{ "type_register", pyg_type_register, METH_VARARGS },
{ "signal_new", pyg_signal_new, METH_VARARGS },
{ "signal_list_names", pyg_signal_list_names, METH_VARARGS },
- { "object_class_list_properties", pyg_object_class_list_properties, METH_VARARGS },
+ { "list_properties", pyg_object_class_list_properties, METH_VARARGS },
{ NULL, NULL, 0 }
};