summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog12
-rw-r--r--gobject/pygobject-private.h1
2 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e6e82ad..05fcf6e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2006-04-29 Johan Dahlin <jdahlin@async.com.br>
+
+ * gobject/pygtype.c (gclosure_from_pyfunc):
+
+ * gobject/pygobject.c (pygobject_disconnect_by_func)
+ (pygobject_handler_block_by_func)
+ (pygobject_handler_unblock_by_func):
+
+ * tests/test_signal.py (TestEmissionHook._callback):
+
+ Fix #154845, add tests and a private method.
+
2006-04-23 John Ehresman <jpe@wingware.com>
reviewed by: Gustavo
diff --git a/gobject/pygobject-private.h b/gobject/pygobject-private.h
index e1aa557..b6f3cd2 100644
--- a/gobject/pygobject-private.h
+++ b/gobject/pygobject-private.h
@@ -97,6 +97,7 @@ GClosure *pyg_closure_new(PyObject *callback, PyObject *extra_args, PyObject *sw
void pyg_closure_set_exception_handler(GClosure *closure,
PyClosureExceptionHandler handler);
GClosure *pyg_signal_class_closure_get(void);
+GClosure *gclosure_from_pyfunc(PyGObject *object, PyObject *func);
PyObject *pyg_object_descr_doc_get(void);