summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn (J5) Palmieri <johnp@redhat.com>2005-02-23 19:36:24 +0000
committerJohn (J5) Palmieri <johnp@redhat.com>2005-02-23 19:36:24 +0000
commitd3f1b8bc89631cd9ef1cf2a806ce80f056b940fb (patch)
tree11ba0fb535a34d85c27832aa709e729dd76734d5
parentf9a7bcc2fcef2b43d4dc5d560ac138da1e9719c9 (diff)
python/dbus_bindings.pyx.in (PendingCall::get_reply):
s/dbus_pending_call_get_reply/dbus_pending_call_steal_reply
-rw-r--r--ChangeLog5
-rw-r--r--python/dbus_bindings.pyx.in4
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b0c045b7..5b7b4bcc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-02-23 John (J5) Palmieri <johnp@redhat.com>
+
+ * python/dbus_bindings.pyx.in (PendingCall::get_reply):
+ s/dbus_pending_call_get_reply/dbus_pending_call_steal_reply
+
2005-02-21 Colin Walters <walters@verbum.org>
* dbus/dbus-test-main.c (main): Take optional specific test
diff --git a/python/dbus_bindings.pyx.in b/python/dbus_bindings.pyx.in
index a1c4e696..6681c458 100644
--- a/python/dbus_bindings.pyx.in
+++ b/python/dbus_bindings.pyx.in
@@ -5,6 +5,8 @@
# where python conditionals have a ( ) around them, thus violating
# PEP-8 were written by the lame wannabe python programmer seth
+#FIXME: find memory leaks that I am sure exist
+
#include "dbus_h_wrapper.h"
cdef extern from "stdlib.h":
@@ -398,7 +400,7 @@ cdef class PendingCall:
def get_reply(self):
cdef Message message
message = Message(_create=0)
- message._set_msg(dbus_pending_call_get_reply(self.pending_call))
+ message._set_msg(dbus_pending_call_steal_reply(self.pending_call))
return message
def block(self):