summaryrefslogtreecommitdiffstats
path: root/gobject/pygobject-private.h
diff options
context:
space:
mode:
authorManish Singh <yosh@gimp.org>2005-11-03 19:15:23 +0000
committerJohan Dahlin <johan@src.gnome.org>2005-11-03 19:15:23 +0000
commit55d03f1c08d4f7624732fab642b4c25a0e76e9d3 (patch)
tree2a1828f654b93eba33dbbc8bfc22367ff7294340 /gobject/pygobject-private.h
parentd0449bfb71c391fd5b4ac9bc7d344639eda80332 (diff)
downloadpygobject-55d03f1c08d4f7624732fab642b4c25a0e76e9d3.tar.gz
pygobject-55d03f1c08d4f7624732fab642b4c25a0e76e9d3.tar.xz
pygobject-55d03f1c08d4f7624732fab642b4c25a0e76e9d3.zip
reviewed by: Johan Dahlin <jdahlin@async.com.br>
2005-11-03 Manish Singh <yosh@gimp.org> reviewed by: Johan Dahlin <jdahlin@async.com.br> * gobject/gobjectmodule.c: (pyg_integer_richcompare): * gobject/pygenum.c: (pyg_enum_richcompare): * gobject/pygflags.c: (pyg_flags_richcompare): * gobject/pygobject-private.h: Prepare for Python 2.5 richcompare changes, fixes #320455.
Diffstat (limited to 'gobject/pygobject-private.h')
-rw-r--r--gobject/pygobject-private.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/gobject/pygobject-private.h b/gobject/pygobject-private.h
index 17546c2..69a940f 100644
--- a/gobject/pygobject-private.h
+++ b/gobject/pygobject-private.h
@@ -64,6 +64,10 @@ int pygobject_construct (PyGObject *self,
...);
void pyg_set_object_has_new_constructor (GType gtype);
+PyObject *pyg_integer_richcompare(PyObject *v,
+ PyObject *w,
+ int op);
+
/* from pygtype.h */
extern PyTypeObject PyGTypeWrapper_Type;